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