@php $faqInfo = $sectionData->where('section', 'faq')->first(); $faqInfo = (!empty($faqInfo->content) ? json_decode($faqInfo->content) : ''); @endphp @if (!empty($faq) && $faq->isNotEmpty())
{{-- Left Column: Title & Subtitle --}}
{{ !empty($faqInfo->subtitle) ? $faqInfo->subtitle : 'Frequently Asked Questions' }}

{{ !empty($faqInfo->title) ? $faqInfo->title : 'Got Questions? We Have Answers.' }}

Find quick and easy answers to the most common questions about our services. If you can't find what you're looking for, please reach out to us directly.

Contact Us
{{-- Right Column: Animated Accordion --}}
@foreach ($faq as $key => $row)
index == 0 ? 'checked' : '' }} />
{!! !empty($row->description) ? $row->description : 'Answer content goes here.' !!}
@endforeach
@endif