1
0
Fork 0
internet-everythings-agricu.../app/Services/Admin/WarningNoticeService.php

20 lines
454 B
PHP

<?php
namespace App\Services\Admin;
use App\Models\WarningNotice;
use App\Filters\WarningNoticeFilter;
/**
* @method WarningNotice getModel()
* @method WarningNotice|\Illuminate\Database\Query\Builder query()
*/
class WarningNoticeService extends BaseService
{
protected string $modelName = WarningNotice::class;
protected array $withRelationships = ['device.modes'];
protected string $modelFilterName = WarningNoticeFilter::class;
}