@extends('layouts.app') @section('title', $post->title) @section('content')

{{ $post->title }}

Created {{ $post->created_at->toDayDateTimeString() }}

@if($post->published)

Published

@endif
{!! nl2br(e($post->body)) !!}
@endsection