@extends('web.layouts.master') @php $header = \App\Models\PageSetup::page('about-us'); @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.about') }}

@if(isset($about) || count($counters) > 0)
@if(isset($about))

{{ $about->title }}

{!! $about->description !!}
@if(isset($about->mission_title))

{{ $about->mission_title }}

{!! $about->mission_desc !!}
@endif @if(isset($about->vision_title))

{{ $about->vision_title }}

{!! $about->vision_desc !!}
@endif
@endif @if(count($counters) > 0)
@foreach($counters as $counter)
0

{{ $counter->title }}

@endforeach
@endif
@endif @php $section_whyus = \App\Models\Section::section('why-us'); @endphp @if(isset($section_whyus) || isset($about->video_id))
@if(!empty($about->video_id))
@endif @if(count($chooses) > 0 && isset($section_whyus))

{{ $section_whyus->title }}

{!! $section_whyus->description !!}


    @foreach($chooses as $choose)
  • {{ $choose->title }}
  • @endforeach
@php $page_quote = \App\Models\PageSetup::page('get-quote'); $page_contact = \App\Models\PageSetup::page('contact-us'); @endphp @if(isset($page_quote)) {{ __('navbar.get_quote') }} @elseif(isset($page_contact)) {{ __('common.get_start') }} @endif
@endif
@endif @php $section_team = \App\Models\Section::section('team'); @endphp @if(count($members) > 0 && isset($section_team))

{{ $section_team->title }}

{!! $section_team->description !!}
@foreach($members as $member)
{{ $member->title }}

{{ $member->title }}

{{ $member->designation->title }}@if(isset($member->designation->department)), {{ $member->designation->department }}@endif @if(isset($member->email)) {{ $member->email }} @endif @if(isset($member->phone)) {{ $member->phone }} @endif
@endforeach
@endif @php $section_process = \App\Models\Section::section('process'); @endphp @if(count($processes) > 0 && isset($section_process))

{{ $section_process->title }}

{!! $section_process->description !!}
@endif @php $section_clients = \App\Models\Section::section('clients'); @endphp @if(count($clients) > 0 && isset($section_clients))

{{ $section_clients->title }}

{!! $section_clients->description !!}
@endif @endsection