generated from liutk/owl-admin-base
23 lines
570 B
PHP
23 lines
570 B
PHP
<?php
|
|
|
|
namespace App\Services\Admin;
|
|
|
|
use App\Models\PersonChange;
|
|
use App\Models\Filters\PersonChangeFilter;
|
|
use App\Traits\UploadTrait;
|
|
use Illuminate\Support\Arr;
|
|
|
|
/**
|
|
* @method PersonChange getModel()
|
|
* @method PersonChange|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class PersonChangeService extends BaseService
|
|
{
|
|
protected string $modelName = PersonChange::class;
|
|
|
|
protected string $modelFilterName = PersonChangeFilter::class;
|
|
|
|
protected array $withRelationships = ['person', 'person.organizedBody'];
|
|
|
|
protected bool $modelSortAble = true;
|
|
} |