mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
49 lines
938 B
PHP
49 lines
938 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
class BankIntegration extends BaseModel
|
||
|
{
|
||
|
|
||
|
protected $fillable = [
|
||
|
];
|
||
|
|
||
|
protected $dates = [
|
||
|
];
|
||
|
|
||
|
protected $casts = [
|
||
|
'updated_at' => 'timestamp',
|
||
|
'created_at' => 'timestamp',
|
||
|
'deleted_at' => 'timestamp',
|
||
|
];
|
||
|
|
||
|
public function getEntityType()
|
||
|
{
|
||
|
return self::class;
|
||
|
}
|
||
|
|
||
|
public function company()
|
||
|
{
|
||
|
return $this->belongsTo(Company::class);
|
||
|
}
|
||
|
|
||
|
public function user()
|
||
|
{
|
||
|
return $this->belongsTo(User::class)->withTrashed();
|
||
|
}
|
||
|
|
||
|
public function account()
|
||
|
{
|
||
|
return $this->belongsTo(Account::class)->withTrashed();
|
||
|
}
|
||
|
|
||
|
}
|