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