2018-10-22 23:04:37 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2018-10-22 23:04:37 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2018-11-20 15:36:56 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2018-10-22 23:04:37 +11:00
|
|
|
|
2018-11-02 21:54:46 +11:00
|
|
|
class Proposal extends BaseModel
|
2018-10-22 23:04:37 +11:00
|
|
|
{
|
2018-11-20 15:36:56 +11:00
|
|
|
use MakesHash;
|
2018-10-22 23:04:37 +11:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
protected $guarded = [
|
|
|
|
|
'id',
|
|
|
|
|
];
|
2018-11-20 15:36:56 +11:00
|
|
|
|
2020-07-23 13:55:11 +10:00
|
|
|
protected $touches = [];
|
2020-07-16 21:01:39 +10:00
|
|
|
|
2020-05-06 21:49:42 +10:00
|
|
|
public function getEntityType()
|
|
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
return self::class;
|
2020-05-06 21:49:42 +10:00
|
|
|
}
|
|
|
|
|
|
2018-11-20 15:36:56 +11:00
|
|
|
protected $appends = ['proposal_id'];
|
|
|
|
|
|
|
|
|
|
public function getRouteKeyName()
|
|
|
|
|
{
|
|
|
|
|
return 'proposal_id';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getProposalIdAttribute()
|
2018-10-22 23:04:37 +11:00
|
|
|
{
|
2018-11-20 15:36:56 +11:00
|
|
|
return $this->encodePrimaryKey($this->id);
|
2018-10-22 23:04:37 +11:00
|
|
|
}
|
|
|
|
|
|
2019-04-28 15:31:32 +10:00
|
|
|
public function documents()
|
|
|
|
|
{
|
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
|
}
|
2018-11-20 15:36:56 +11:00
|
|
|
|
2021-09-08 09:29:20 +10:00
|
|
|
public function user()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 21:16:38 +11:00
|
|
|
public function assigned_user()
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id');
|
2019-11-05 21:16:38 +11:00
|
|
|
}
|
2018-10-22 23:04:37 +11:00
|
|
|
}
|