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

70 lines
1.5 KiB
PHP
Raw Normal View History

2019-09-10 04:30:43 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. 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\DataMapper\ClientSettings;
use App\DataMapper\CompanySettings;
2019-09-11 07:32:47 +02:00
use App\Models\Client;
2019-09-10 04:30:43 +02:00
use App\Models\Company;
use App\Models\User;
use App\Utils\Traits\MakesHash;
use Hashids\Hashids;
use Illuminate\Database\Eloquent\SoftDeletes;
2019-09-11 07:32:47 +02:00
use Illuminate\Database\Eloquent\Model;
2019-09-10 04:30:43 +02:00
class GroupSetting extends StaticModel
2019-09-10 04:30:43 +02:00
{
use MakesHash;
2020-02-27 00:32:44 +01:00
use SoftDeletes;
public $timestamps = false;
2019-09-11 07:32:47 +02:00
2019-09-10 04:30:43 +02:00
protected $casts = [
'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 = [
'name',
'settings'
2019-10-05 02:11:04 +02:00
];
2019-10-05 00:58:51 +02:00
public function company()
{
return $this->belongsTo(Company::class);
}
2019-09-10 04:30:43 +02:00
public function user()
{
return $this->belongsTo(User::class);
}
2019-09-10 04:30:43 +02:00
public function clients()
{
return $this->hasMany(Client::class, 'id', 'group_settings_id');
}
2019-09-11 07:32:47 +02:00
/**
* Retrieve the model for a bound value.
*
* @param mixed $value
* @return \Illuminate\Database\Eloquent\Model|null
*/
public function resolveRouteBinding($value)
{
return $this
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
}
}