@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
@endsection