@extends('layouts.master') @section('content')

{{ $post->title }}

{{ $post->created_at->toFormattedDateString() }} by {{ $post->user->name }}

@if (count($post->tags)) @endif {{ $post->body }} @if (count($post->comments))
@endif {{-- Add a comment --}}
{{-- Only needed for methods other than GET/POST, since most browsers only support those two --}} {{ method_field('POST') }} {{ csrf_field() }} @include('layouts.errors')
@endsection