generated from liutk/owl-admin-base
16 lines
383 B
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;
|
|
}
|