{{ $blog->title }}
@if($blog->published_at)
Published on {{ $blog->published_at->format('F d, Y') }}
@else
Created on {{ $blog->created_at->format('F d, Y') }}
@endif
@if($blog->status === 'published')
Published
@else
Draft
@endif
{!! $blog->content !!}