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