generated from liutk/owl-admin-base
23 lines
556 B
PHP
23 lines
556 B
PHP
<?php
|
|
|
|
namespace App\Services\Admin;
|
|
|
|
use App\Models\UserActivity;
|
|
use App\Models\Filters\UserActivityFilter;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
/**
|
|
* @method UserActivity getModel()
|
|
* @method UserActivity|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class UserActivityService extends BaseService
|
|
{
|
|
protected string $modelName = UserActivity::class;
|
|
|
|
protected string $modelFilterName = UserActivityFilter::class;
|
|
|
|
protected bool $modelSortAble = true;
|
|
|
|
protected array $withRelationships = ['user'];
|
|
} |