@extends('layouts.app') @section('title', isset($article->title) ? $article->title : '博文') @section('style') @endsection @section('content')
{{-- 文章 --}}
{{-- 右侧工具条 --}} {{-- 博文 --}}
{{-- 标题 --}}

{{ $article->title }}

{{-- 信息工具条 --}} {{-- 分割线 --}}
{{-- 文章详情 --}}
{!! $article->body !!}
{{-- 回复 --}} @include('pages.replies._reply_list') @include('pages.replies._reply_box', ['input_model'=> \App\Models\BlogArticle::class ]) {{--@includeWhen(Auth::check(), 'pages.blog_articles._reply_box')--}}
@include('pages.blog_articles._sidebar')
@endsection @section('script') @endsection