29 lines
817 B
PHP
29 lines
817 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $article->title)
|
|
|
|
|
|
@section('content')
|
|
<!-- content -->
|
|
<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 }}">--}}
|
|
|
|
{!! $article->content !!}
|
|
</div>
|
|
<!-- 下一篇 -->
|
|
@if ($next)
|
|
<div class="details-writings">
|
|
|
|
<a href="{{ $next->link }}">下一篇:{{ $next->title }}</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
@endsection
|