@extends('web.layouts.master') @php $header = \App\Models\PageSetup::page('faqs'); @endphp @if(isset($header)) @section('title', $header->meta_title) @section('top_meta_tags') @if(isset($header->meta_description)) @else @endif @if(isset($header->meta_keywords)) @else @endif @endsection @endif @section('content') {{ __('navbar.faqs') }} {{ __('navbar.faqs') }} {{ __('navbar.home') }} @php $section_faqs = \App\Models\Section::section('faqs'); @endphp @if(isset($section_faqs)) {{ $section_faqs->title }} {!! $section_faqs->description !!} @foreach($faq_categories as $faq_category) {{ $faq_category->title }} @endforeach @foreach($faqs as $key => $faq) {{ $faq->title }} {!! $faq->description !!} @endforeach @endif @php $section_clients = \App\Models\Section::section('clients'); @endphp @if(count($clients) > 0 && isset($section_clients)) @foreach($clients as $client) @endforeach @endif @endsection