@if ($title)

{{ $title }}

@endif @if (!empty($subtitle))

{{ $subtitle }}

@endif
@foreach ($categories as $category)
@foreach ($category->faqs->chunk(round($category->count() / 2)) as $faqs)
@foreach ($faqs as $faq)

{{ $faq->question }}

{!! BaseHelper::clean($faq->answer) !!}
@endforeach
@endforeach
@endforeach