{{ $post->title }}

@if($post->category) {{ $post->category->name }} @endif @foreach($post->tags as $tag) #{{ $tag->name }} @endforeach

{{ $post->title }}

Penulis: {{ $post->author->name }}
Dipublish: {{ $post->published_at->format('d F Y, H:i') }}
{!! $post->content !!}

💬 Komentar ({{ $post->comments->count() }})

@if($post->comments->isEmpty())

Belum ada komentar. Jadilah yang pertama!

@else
@foreach($post->comments as $comment)
{{ $comment->user->name }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->body }}

@endforeach
@endif

🔒 Fitur komentar akan segera hadir. (Fase 7)