芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/app/Models/BankAccount.php
belongsTo(Currency::class, 'currency_id'); } public function transaction(): HasMany { return $this->hasMany(BankTransaction::class, 'bank_account_id'); } public function getFileUrlAttribute() { if ($this->bank_logo != '') { return asset_url_local_s3(BankAccount::FILE_PATH.'/' . $this->bank_logo); } elseif ($this->type == 'bank'){ return '
'; } elseif ($this->type == 'cash'){ return '
'; } } }