1
0
Fork 0
internet-everythings-agricu.../app/Services/Admin/CropHarvestService.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;
}