2019-09-10 04:30:43 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-09-10 04:30:43 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-09-10 04:30:43 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-09-11 07:32:47 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-09-06 11:38:10 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-09-10 04:30:43 +02:00
|
|
|
|
2019-09-12 03:28:41 +02:00
|
|
|
class GroupSetting extends StaticModel
|
2019-09-10 04:30:43 +02:00
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
use MakesHash;
|
2020-02-27 00:32:44 +01:00
|
|
|
use SoftDeletes;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-08-04 10:21:14 +02:00
|
|
|
//public $timestamps = false;
|
2019-09-11 07:32:47 +02:00
|
|
|
|
2019-09-10 04:30:43 +02:00
|
|
|
protected $casts = [
|
2019-09-26 00:27:26 +02:00
|
|
|
'settings' => 'object',
|
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-09-10 04:30:43 +02:00
|
|
|
];
|
|
|
|
|
2019-10-05 00:58:51 +02:00
|
|
|
protected $fillable = [
|
2019-12-30 22:59:12 +01:00
|
|
|
'name',
|
2020-09-06 11:38:10 +02:00
|
|
|
'settings',
|
2019-10-05 02:11:04 +02:00
|
|
|
];
|
2019-10-05 00:58:51 +02:00
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
2019-09-10 04:30:43 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class);
|
|
|
|
}
|
2019-09-10 04:30:43 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function clients()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Client::class, 'id', 'group_settings_id');
|
|
|
|
}
|
2019-09-11 07:32:47 +02:00
|
|
|
|
2021-01-18 12:06:26 +01:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2019-11-06 23:57:09 +01:00
|
|
|
/**
|
|
|
|
* Retrieve the model for a bound value.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param mixed $value
|
|
|
|
* @param null $field
|
|
|
|
* @return Model|null
|
2019-11-06 23:57:09 +01:00
|
|
|
*/
|
2020-11-25 15:19:52 +01:00
|
|
|
public function resolveRouteBinding($value, $field = null)
|
2019-11-06 23:57:09 +01:00
|
|
|
{
|
|
|
|
return $this
|
|
|
|
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|