2019-05-07 07:06:42 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
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',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
2019-05-15 06:47:07 +02:00
|
|
|
|
|
|
|
public function company_ledgerable()
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
2019-05-07 07:06:42 +02:00
|
|
|
}
|