@extends('layouts.app') @section('title', 'View Post') @section('content')

👁️ View Post

Post details and management

← Back to Posts ✏️ Edit Post @if($post->status === 'published') 🌐 View Public @endif

{{ $post->title }}

@if($post->excerpt)

{{ $post->excerpt }}

@endif
@if($post->featured_image) @endif
{!! nl2br(e($post->content)) !!}
@if($post->metadata && count($post->metadata) > 0) @endif
@endsection