{{-- LIVEWIRE ROOT (REQUIRED) --}}
{{-- ================= BLOG DETAIL ================= --}}
{{-- TOP BAR --}}
← See All Blogs
Date
{{ \Carbon\Carbon::parse($blog->publish_date)->format('M Y') }}
{{-- TITLE --}}

{{ $blog->title }}

{{-- FEATURE IMAGE --}}
{{ $blog->title }}
{!! $blog->content !!}
{{-- FAQ SECTION (only if blog has FAQs) --}} @if ($blog->faqs && $blog->faqs->count() > 0)
{{-- HEADER --}}
Got Questions?

Frequently Asked Questions

{{-- ACCORDION --}}
@foreach ($blog->faqs as $index => $faq)
{{-- ANSWER --}}

{{ $faq->answer }}

@endforeach
@endif
{{-- ================= MORE BLOGS ================= --}}
{{-- TOP BORDER (EDGE TO EDGE) --}}
{{-- HEADER --}} @foreach ($moreBlogs as $index => $item)
{{ \Carbon\Carbon::parse($blog->publish_date)->format('M Y') }}

{{ $blog->title }}

@endforeach