category; $parent = getTopCate($category->id); $next = Article::where('id', '>', $article->id) ->where('category_id', $article->category_id) ->where('status', 1) ->first(); return view('article.show', compact('article', 'next', 'parent')); } }