@extends('layouts.admin') @section('title', 'View Blog Post') @section('content_header')

View Blog Post

@stop @section('content')

{{ $post->title }}

Category: {{ $post->category->name ?? 'N/A' }}

Published: {{ $post->created_at->format('M d, Y H:i') }}


@if($post->image)
{{ $post->title }}
@endif
Description

{{ $post->description }}

Content
{!! $post->content !!}

SEO Settings

{{ $post->meta_title ?: 'Not set' }}

{{ $post->meta_description ?: 'Not set' }}

@stop