take(12)->get()); } /** * Load all the articles for a given topics * * @param mixed $topic * @return JsonResponse */ public function show(Topic $topic) : JsonResponse { return response()->json([ 'topic' => new TopicResource($topic), 'articles' => ArticleResource::collection($topic->articles()->paginate(8)) ]); } }