修改详情页是否显示时间

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'));

View File

@@ -2,6 +2,10 @@
return [
//文章详情页显示时间 的顶级分类
'show_time' => [
15, 10, 19, 31, 56, 57,
],
/*
|--------------------------------------------------------------------------
| Application Name

View File

@@ -8,7 +8,9 @@
<div class="container details">
<!-- 文章标题 -->
<h3 class="details-title">{{ $article->title }}</h3>
@if (in_array($parent->id,config('app.show_time')))
<p class="details-time">{{ $article->created_at }}</p>
@endif
<!-- 文章详情 -->
<div class="details-content">
{{-- <img src="{{ $article->cover_path }}">--}}