Files
new_dqb/resources/views/article/show.blade.php
2020-09-16 08:35:46 +08:00

29 lines
719 B
PHP

@extends('layouts.app')
@section('title', '文章详情')
@section('content')
<!-- mian -->
<div class="container child">
<div class="wzxq">
<h3>{{ $article->title }}</h3>
<p>发表时间:{{ $article->created_at }}</p>
</div>
<div class="ritText">
@if ($article->cover)
<img src="{{ $article->cover_path }}">
@endif
<p>
{!! $article->content !!}
</p>
</div>
@if ($next)
<div class="xyp">
<b>下一篇</b><a href="{{ $next->link }}">{{ $next->title }}</a>
</div>
@endif
</div>
<!-- end mian -->
@endsection