readOnly(), ]; } /** * Get the resource filters. */ public function filters(): array { // Log::debug(__METHOD__); return [ Filter::make('id'), ]; } public function repository(): AccountRepository { $this->setUserGroup($this->server->getUsergroup()); $repository = AccountRepository::make() ->withServer($this->server) ->withSchema($this) ->withUserGroup($this->userGroup); Log::debug(sprintf('%s: %s', __METHOD__, get_class($repository))); return $repository; } }