store-manage/app/Admin/Services/StoreProfitRatioLogService.php

16 lines
383 B
PHP

<?php
namespace App\Admin\Services;
use App\Admin\Filters\StoreProfitRatioLogFilter;
use App\Models\StoreProfitRatioLog;
class StoreProfitRatioLogService extends BaseService
{
protected array $withRelationships = ['store', 'employee'];
protected string $modelName = StoreProfitRatioLog::class;
protected string $modelFilterName = StoreProfitRatioLogFilter::class;
}