@extends('layouts.front') @section('title', 'FAQ') @push('styles') @endpush @section('content')

Q/A

@foreach($categories as $index => $cat)
@forelse($cat->faqs as $faq)

{!! $faq->answer !!}
@empty

No questions in this category.

@endforelse
@endforeach
@endsection