| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 | <?php
namespace App\Models\Banking;
use App\Enums\BankAccountType;
use App\Models\Accounting\Account;
use App\Traits\Blamable;
use App\Traits\CompanyOwned;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOneThrough;
class ConnectedBankAccount extends Model
{
    use Blamable;
    use CompanyOwned;
    protected $table = 'connected_bank_accounts';
    protected $fillable = [
        'company_id',
        'institution_id',
        'bank_account_id',
        'external_account_id',
        'access_token',
        'identifier',
        'item_id',
        'currency_code',
        'current_balance',
        'name',
        'mask',
        'type',
        'subtype',
        'import_transactions',
        'created_by',
        'updated_by',
    ];
    protected $casts = [
        'import_transactions' => 'boolean',
        'type' => BankAccountType::class,
        'access_token' => 'encrypted',
    ];
    protected $appends = [
        'masked_number',
    ];
    public function institution(): BelongsTo
    {
        return $this->belongsTo(Institution::class, 'institution_id');
    }
    public function bankAccount(): BelongsTo
    {
        return $this->belongsTo(BankAccount::class, 'bank_account_id');
    }
    public function account(): HasOneThrough
    {
        return $this->hasOneThrough(
            Account::class,
            BankAccount::class,
            'id',
            'accountable_id',
            'bank_account_id',
            'id'
        );
    }
    protected function maskedNumber(): Attribute
    {
        return Attribute::get(static function (mixed $value, array $attributes): ?string {
            return $attributes['mask'] ? '•••• ' . substr($attributes['mask'], -4) : null;
        });
    }
}
 |