take(14)->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' => $topic->articles()->paginate(8) ]); } }