Summary
Total Active FAQs: {{ $total }}
Export Date: {{ \Carbon\Carbon::parse($date)->format('F j, Y \a\t g:i A') }}
Status Filter: Active FAQs Only
@if(count($faqs) > 0)
@foreach($faqs as $index => $faq)
@if($index > 0 && $index % 3 == 0)
Q{{ $index + 1 }}. {{ $faq->question }}
Answer: {{ strip_tags($faq->answer) }}
FAQ ID: #{{ $faq->id }}
Created: {{ $faq->created_at->format('M j, Y') }}
Status: Active
@endforeach
@else