user) ->isStandard() ->orderBy('artists.name') ->simplePaginate(21); return ArtistResource::collection($pagination); } public function show(Artist $artist) { return ArtistResource::make($this->artistRepository->getOne($artist->id, $this->user)); } }