@extends('blog.layout') @section('content')

Image

{{ $post->title }}

{{ $post->created_at->format('F d, Y') }} posted by {{ $post->user->name ?? "" }}

{{ $post->content }}

@foreach ($post->tags as $tag) {{ $tag->name }} @if (!$loop->last) , @endif @endforeach
{{ $post->category->name }}
@endsection