@extends('layouts.app') @section('title', '文章详情') @section('content')

{{ $article->title }}

发表时间:{{ $article->created_at }}

@if ($article->cover) @endif

{!! $article->content !!}

@if ($next)
下一篇{{ $next->title }}
@endif
@endsection