@extends('admin.dashboard.layout') @section('content')

Blog Details

{{ $blog->title }}

{{ $blog->title }}

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

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

Excerpt:

{{ $blog->excerpt }}

Content:

{!! $blog->content !!}

SEO Information

Meta Title: {{ $blog->seo_meta_title ?? 'N/A' }}

Meta Description: {{ $blog->seo_meta_description ?? 'N/A' }}

Meta Keywords: {{ $blog->seo_meta_keywords ?? 'N/A' }}

Meta Robots: {{ $blog->seo_meta_robots ?? 'N/A' }}

@endsection