27 lines
694 B
PHP
27 lines
694 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', $article->title)
|
|
|
|
|
|
@section('content')
|
|
<!-- content -->
|
|
<div class="container details">
|
|
<!-- 文章标题 -->
|
|
<h3 class="details-title">{{ $article->title }}</h3>
|
|
<p class="details-time">{{ $article->created_at }}</p>
|
|
<!-- 文章详情 -->
|
|
<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
|