@extends('layouts.frontend') @section('headerMeta') {{ $metaTitle }} @endsection @php $statisticInfo = $sectionData->where('section', 'statistics')->first(); $statisticInfo = (!empty($statisticInfo->content) ? json_decode($statisticInfo->content) : ''); @endphp @section('content') @include('layouts.frontend-partial.breadcrumb') {{-- ======================== About us start ======================== --}} @if (!empty($info))
@if (!empty($info->images))
About us image
@endif
About Company

{!! !empty($info->title) ? $info->title : '' !!}

{{!empty($info->short_description) ? $info->short_description : '' }}
@php($value = json_decode($info->value)) @if (!empty($value)) @foreach ($value as $key => $items)
{!! $items->icon !!}
{{ !empty($items->title) ? $items->title : '' }}

{{ !empty($items->description) ? $items->description : '' }}

@endforeach @endif
@if (!empty($info->description))
{!! $info->description !!}
@endif
@endif {{-- ======================== About us end ======================== --}} {{-- ======================== Team section start ======================== --}}

Our Advisor.

Our brilliant team.

See all Team {!! config('icons.arrowRightLine') !!}
@if (!empty($teams) && $teams->isNotEmpty()) @foreach ($teams as $key => $team)
@if (!empty($team->image))
{{ $team->name }}
@endif

{{ !empty($team->designation) ? $team->designation : '' }}

{{ !empty($team->name) ? $team->name : '' }}

@endforeach @endif
{{-- ======================== Team section end ======================== --}} {{-- ======================== Why Choose Us Sections Begins ======================== --}} @include('layouts.frontend-partial.why-us') {{-- ======================== Why Choose Us Sections ends ======================== --}} @push('headerPartial') @endpush @push('footerPartial') @endpush @endsection