@extends( ($theme =="white") ? 'layouts.public_white': ( ($theme =="red") ? 'layouts.public_red': (($theme =="green") ? 'layouts.public_green': (($theme =="black") ? 'layouts.public_black': (($theme =="blue") ?'layouts.public_blue':'layouts.public_yellow' )))) ) @section('content')

{{ __('FAQs') }}

@include('common.demo') @include('common.errors')
@if (!count($faq_categories))

{{ __('No data found') }} !!

{{ __('Sorry we cant find any data') }}.

@else @foreach($faq_categories as $faq_category) @if (count($faqs[$faq_category->uuid]))

{{ $faq_category->category_text }}

@foreach($faqs[$faq_category->uuid] as $faq)

{!! $faq->answer !!}
@endforeach
@endif @endforeach @endif
@endsection