@extends('layouts.app') @section('title', $topic->title) @section('description', $topic->excerpt) @section('content')

{{ $topic->title }}

{!! $topic->body !!}
@can('update', $topic)

编辑
{{ csrf_field() }} {{ method_field('DELETE') }}
@endcan
{{-- 用户回复列表 --}}
@includeWhen(Auth::check(),'topics._reply_box', ['topic' => $topic]) @include('topics._reply_list', ['replies' => $topic->replies()->with('user')->get()])
@endsection