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