19 lines
403 B
PHP
19 lines
403 B
PHP
<?php
|
|
|
|
namespace App\Services\Admin;
|
|
|
|
use App\Models\RegionPlantLog;
|
|
use App\Filters\Admin\RegionPlantLogFilter;
|
|
|
|
/**
|
|
* @method RegionPlantLog getModel()
|
|
* @method RegionPlantLog|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class CropPlantService extends BaseService
|
|
{
|
|
protected string $modelName = RegionPlantLog::class;
|
|
|
|
protected string $modelFilterName = RegionPlantLogFilter::class;
|
|
|
|
}
|