@extends("layouts.app") @section("title", "Post Detail") @section("content") Back

Title : {{ $post->title }}

Category: {{ $post->category->name ?? 'No Category' }}

Author: {{ $post->user->name ?? 'Guest' }}

Status: {{ ucfirst($post->status) }}

@if ($post->image) @endif

Content :{!! nl2br(e($post->content)) !!}

@endsection