{{ $post->title }}
{{ $post->content }}
@foreach ($post->tags as $tag)
{{ $tag->name }}
@if (!$loop->last)
,
@endif
@endforeach
{{ $post->created_at->format('F d, Y') }}
by {{ $post->user->name ?? "" }}