@extends('frontend.layouts.app') @section('description') @php $data = metaData('faq'); @endphp {{ $data->description }} @endsection @section('og:image') {{ asset($data->image) }} @endsection @section('title') {{ $data->title }} @endsection @section('main')
@php $faqCount = 0; @endphp @foreach ($faq_categories as $cat)
@if (count($cat->faqs) > 0)
{{ $cat->name }}
@foreach ($cat->faqs as $faq)

{!! $faq->answer !!}
@endforeach @endif @php $faqCount += count($cat->faqs); @endphp
@endforeach @if ($faqCount == 0) @endif
{{-- Subscribe Newsletter --}} @endsection