2018-10-16 13:42:43 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2018-10-16 13:42:43 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Crypt;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2018-10-16 13:42:43 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class BankAccount.
|
2023-03-08 08:33:42 +01:00
|
|
|
*
|
|
|
|
* @property-read \App\Models\Bank|null $bank
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
|
|
|
* @property-read int|null $bank_subaccounts_count
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BankAccount withoutTrashed()
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-04-26 08:55:49 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-24 02:12:12 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-24 08:02:34 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-27 05:47:01 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-27 22:47:07 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-29 04:13:50 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-29 05:23:06 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-04-10 09:37:40 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-04-13 07:39:12 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-04-26 00:43:54 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-21 12:37:06 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\BankSubaccount> $bank_subaccounts
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
2018-10-16 13:42:43 +02:00
|
|
|
*/
|
2018-11-02 11:54:46 +01:00
|
|
|
class BankAccount extends BaseModel
|
2018-10-16 13:42:43 +02:00
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'bank_id',
|
|
|
|
'app_version',
|
|
|
|
'ofx_version',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getUsername()
|
|
|
|
{
|
|
|
|
return Crypt::decrypt($this->username);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param $value
|
2018-10-16 13:42:43 +02:00
|
|
|
*/
|
|
|
|
public function setUsername($value)
|
|
|
|
{
|
|
|
|
$this->username = Crypt::encrypt($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return BelongsTo
|
2018-10-16 13:42:43 +02:00
|
|
|
*/
|
|
|
|
public function bank()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Bank::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return HasMany
|
2018-10-16 13:42:43 +02:00
|
|
|
*/
|
|
|
|
public function bank_subaccounts()
|
|
|
|
{
|
2020-10-28 11:10:49 +01:00
|
|
|
return $this->hasMany(BankSubaccount::class);
|
2018-10-16 13:42:43 +02:00
|
|
|
}
|
2020-05-06 13:49:42 +02:00
|
|
|
|
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
2018-10-16 13:42:43 +02:00
|
|
|
}
|