{{ $post->title }}
Published on {{ $post->published_at->format('F j, Y') }}
@if($post->user)
by {{ $post->user->name }}
@endif
@if($post->categories->isNotEmpty())
| In
@foreach($post->categories as $category)
{{ $category->name }}{{ !$loop->last ? ',' : '' }}
@endforeach
@endif
@if($post->featured_image)
{!! $post->content !!}
{{-- TODO: Add tags, social sharing, comments section --}}