1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/CompanyLedger.php

57 lines
1.1 KiB
PHP
Raw Normal View History

2019-05-07 07:06:42 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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
*/
2019-05-07 07:06:42 +02:00
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
2019-05-16 00:26:21 +02:00
class CompanyLedger extends Model
2019-05-07 07:06:42 +02:00
{
protected $dateFormat = 'Y-m-d H:i:s.u';
protected $guarded = [
'id',
];
protected $casts = [
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
];
2019-05-07 07:06:42 +02:00
2020-07-23 05:55:11 +02:00
protected $touches = [];
public function getEntityType()
{
return self::class;
}
2019-05-07 07:06:42 +02:00
public function user()
{
return $this->belongsTo(User::class)->withTrashed();
2019-05-07 07:06:42 +02:00
}
public function company()
{
return $this->belongsTo(Company::class);
2019-05-07 07:06:42 +02:00
}
2019-05-15 06:47:07 +02:00
public function company_ledgerable()
{
return $this->morphTo();
}
2022-05-15 12:14:14 +02:00
public function client()
{
return $this->belongsTo(Client::class);
}
2019-05-07 07:06:42 +02:00
}