{{-- resources/views/restaurant/support/faq.blade.php --}} @extends('layouts.restaurant') @section('title', 'FAQs') @section('content')
@foreach($categories as $category)
{{ $category }}
@foreach($faqs->where('category', $category) as $index => $faq)

{{ $faq['answer'] }}
@endforeach
@endforeach

Still Need Help?

Can't find what you're looking for? Our support team is here to help.

@endsection @section('scripts') @endsection