@extends('layouts.app') @section('title', __('FAQs')) @section('content')
{{-- Header --}}

{{ $faqHeader?->title() ?? __('Frequently Asked Questions') }}

{{ $faqHeader?->subtitle() ?? __('Find clear answers to common questions about our meal plans, subscriptions, deliveries, and payments.') }}

{{-- Filters & Search --}}
{{-- Category Filters --}}
{{ __('All') }} @foreach($categories as $category) @if($category->icon) @endif {{ $category->name }} @endforeach
{{-- Search --}}
{{-- FAQs Accordion --}}
@forelse ($faqs as $index => $faq)
{!! $faq->answer !!}
@empty
@if($search) {{ __('No FAQs found matching your search.') }} @elseif($categorySlug) {{ __('No FAQs found in this category.') }} @else {{ __('No FAQs available yet.') }} @endif
@endforelse
@endsection