@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') }}

@php $section_faqs = \App\Models\Section::section('faqs'); @endphp @if(isset($section_faqs))

{{ $section_faqs->title }}

{!! $section_faqs->description !!}
    @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))
@endif @endsection