{!! $blog->meta ?? '' !!} {!! $blog->schema ?? '' !!}
@include("layouts.header")

Blog Details

{{ $blog->title }}

{{ \Carbon\Carbon::parse($blog->published_at ?? $blog->created_at)->format('d M Y') }} {{ $blog->author_name ?? 'Admin' }} @if($blog->category) {{ $blog->category->name }} @endif
{{ $blog->banner_alt ?? $blog->title }}
{!! $blog->content !!}
@php $faqs = json_decode($blog->faqs ?? '[]', true); @endphp @if(!empty($faqs))

Frequently Asked Questions

@foreach($faqs as $index => $faq)

{{ $faq['answer'] }}

@endforeach
@endif
Latest Articles

Recent Blogs

Explore our latest updates, guides, and insights.

@foreach($recentBlogs as $recent)
{{ $recent->created_at->format('d M Y') }} {{ $recent->author_name ?? 'Admin' }}

{{ \Illuminate\Support\Str::limit($recent->title, 70) }}

Read More
@endforeach
@include("layouts.footer")