<?php namespace App\Services; use App\Models\CoachLocation; use Slowlyo\OwlAdmin\Services\AdminService; /** * 技师定位 * * @method CoachLocation getModel() * @method CoachLocation|\Illuminate\Database\Query\Builder query() */ class CoachLocationService extends AdminService { protected string $modelName = CoachLocation::class; }