@extends('layouts.frontend.master') @section('title', 'FAQs') @section('css') @endsection @section('style') @endsection @section('content')
image
You Have Questions

WE HAVE ANSWERS

Do not hesitate to send us an email if you can't find what you're looking for.

@foreach($faqCategories as $k=>$category)
@if($category->faqs) @foreach($category->faqs as $fk=>$faq)
{!! $faq->answer !!}
@endforeach @else
No FAQs Found
@endif
@endforeach
@endsection @section('script') @endsection