20 lines
465 B
PHP
20 lines
465 B
PHP
<?php
|
|
|
|
namespace App\Services\Admin;
|
|
|
|
use App\Models\RegionCategory;
|
|
use App\Filters\Admin\RegionCategoryFilter;
|
|
|
|
/**
|
|
* @method RegionCategory getModel()
|
|
* @method RegionCategory|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class RegionCategoryService extends BaseService
|
|
{
|
|
protected string $modelName = RegionCategory::class;
|
|
|
|
protected string $modelFilterName = RegionCategoryFilter::class;
|
|
|
|
protected array $withRelationships = ['parent'];
|
|
}
|