show.blade.php 152 B

12345678
  1. @extends('layouts.master')
  2. @section('content')
  3. <h1>{{ $post->title }}</h1>
  4. <div class="body">
  5. {{ $post->body }}
  6. </div>
  7. @endsection