@extends('dashboard.layouts.master') @section('title', 'View Blog Details') @section('content')
Blog Details
Back to List

{{ $blog->title }}

@if($blog->subtitle)
{{ $blog->subtitle }}
@endif

Published On: {{ $blog->published_at ? \Carbon\Carbon::parse($blog->published_at)->format('F d, Y') : '—' }}

Status: @if($blog->status) Active @else Inactive @endif
Content:
{!! $blog->content !!}
@if($blog->link)
External Link: {{ $blog->link }}
@endif
@if($blog->image)
{{ $blog->title }}
@else
No Image Available
@endif

SEO Meta Details
Meta Title {{ $blog->meta_title ?? '—' }}
Meta Description {!! $blog->meta_description ?? '—' !!}
Meta Keywords {{ $blog->meta_keywords ?? '—' }}
Edit
@csrf @method('DELETE')
@endsection