修改详情页是否显示时间

This commit is contained in:
2020-09-22 15:56:25 +08:00
parent c120c05e9b
commit ec3323f2d2
3 changed files with 24 additions and 15 deletions

View File

@@ -28,7 +28,10 @@ class ArticleController extends Controller
$category = $article->category;
$next = Article::where('id', '>', $article->id)->where('status', 1)->first();
$next = Article::where('id', '>', $article->id)
->where('category_id', $category->id)
->where('status', 1)
->first();
$parent = getTopCate($category->id);
return view('articles.show', compact('article', 'category', 'next', 'parent'));