@extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->about_page_title ?? __('About Us') }} @else {{ __('About Us') }} @endif @endsection @php $metaKeywords = !empty($seo->meta_keyword_about) ? $seo->meta_keyword_about : ''; $metaDescription = !empty($seo->meta_description_about) ? $seo->meta_description_about : ''; @endphp @section('meta-keywords', "{{ $metaKeywords }}") @section('meta-description', "$metaDescription") @section('hero-section')
@endsection @section('content') @if ($secInfo->about_section_status == 1)
@if (is_null($aboutUsSection))

{{ __('No data found for about section') }}

@endif
@if (!is_null($aboutUsSection)) About @endif

{{ $aboutUsSection ? $aboutUsSection->title : '' }}

{{ $aboutUsSection ? $aboutUsSection->subtitle : '' }}

{!! $aboutUsSection ? $aboutUsSection->text : '' !!}
@endif
@if ($secInfo->features_section_status == 1)

{{ $featureEventSection ? $featureEventSection->title : '' }}

{{ $featureEventSection ? $featureEventSection->text : '' }}

@if (count($featureEventItems) < 1)

{{ __('No data found for features section') }}

@endif
@foreach ($featureEventItems as $item)
{{ $item->title }}

{{ $item->text }}

@endforeach
@endif
@if ($secInfo->testimonials_section_status == 1)

{{ $testimonialData ? $testimonialData->title : __('What say our client about us') }}

{{ $testimonialData ? $testimonialData->text : '' }}

@if (!is_null($testimonialData)) Reviewer @else Reviewer @endif
{{ $testimonialData ? $testimonialData->review_text : __('0 Clients Reviews') }}
@if (count($testimonials) > 0)
@foreach ($testimonials as $item)
Author
{{ $item->name }}
{{ $item->occupation }}
@for ($i = 1; $i <= $item->rating; $i++) @endfor

{{ $item->comment }}

@endforeach
@else

{{ __('No Review Found') }}

@endif

@endif @if ($secInfo->partner_section_status == 1)

{{ $partnerInfo ? $partnerInfo->title : __('Our Partner') }}

{{ $partnerInfo ? $partnerInfo->text : '' }}

@if (count($partners) > 0) @foreach ($partners as $item)
Client Logo
@endforeach @else
{{ __('No Partner Found') }}
@endif
@endif @endsection