@php $version = $basicInfo->theme_version; @endphp @extends('frontend.layout') @section('pageHeading') {{ !empty($pageHeading) ? $pageHeading->about_us_title : __('About Us') }} @endsection @section('metaKeywords') @if (!empty($seoInfo)) {{ $seoInfo->meta_keywords_about_page }} @endif @endsection @section('metaDescription') @if (!empty($seoInfo)) {{ $seoInfo->meta_description_about_page }} @endif @endsection @section('content') @includeIf('frontend.partials.breadcrumb', [ 'breadcrumb' => $bgImg->breadcrumb, 'title' => !empty($pageHeading) ? $pageHeading->about_us_title : __('About Us'), ]) @if ($secInfo->about_section_status == 1)
Image
{{ @$about->title }}

{{ @$about->subtitle }}

{!! @$about->text !!}

@if (!empty($about->button_url)) {{ $about->button_text }} @endif
@endif @if (count($after_about) > 0) @foreach ($after_about as $customAbout) @if (isset($aboutSec[$customAbout->id])) @if ($aboutSec[$customAbout->id] == 1) @php $afAboutCon = App\Models\CustomSectionContent::where('custom_section_id', $customAbout->id) ->where('language_id', $currentLanguageInfo->id) ->first(); @endphp

{{ @$afAboutCon->section_name }}

{!! $afAboutCon->content !!}
@endif @endif @endforeach @endif @if ($secInfo->features_section_status == 1)

{{ @$about->features_title }}

@if (count($features) > 0) @foreach ($features as $feature)

{{ $feature->title }}

{{ $feature->text }}

@endforeach @endif
@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
@endif @if (count($after_features) > 0) @foreach ($after_features as $Cufeatures) @if (isset($aboutSec[$Cufeatures->id])) @if ($aboutSec[$Cufeatures->id] == 1) @php $cuFeatures = App\Models\CustomSectionContent::where('custom_section_id', $Cufeatures->id) ->where('language_id', $currentLanguageInfo->id) ->first(); @endphp

{{ @$cuFeatures->section_name }}

{!! @$cuFeatures->content !!}
@endif @endif @endforeach @endif @if ($basicInfo->theme_version != 2) @if ($secInfo->about_work_status == 1)

{{ !empty($sectionContent->workprocess_section_title) ? $sectionContent->workprocess_section_title : 'How appointment Booking System Works' }}

{{ !empty($sectionContent->workprocess_section_subtitle) ? $sectionContent->workprocess_section_subtitle : 'Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind. ' }}

@if (!empty($sectionContent->workprocess_section_url)) @endif
@foreach ($processes as $processe)

{{ $processe->title }}

{{ $processe->text }}

@endforeach
@endif @endif @if ($basicInfo->theme_version == 2) @if ($secInfo->about_work_status == 1)

{{ !empty($sectionContent->workprocess_section_title) ? $sectionContent->workprocess_section_title : 'How the Appointment Booking System Works ' }}

@foreach ($processes as $processe)
Image

{{ $processe->title }}

0{{ $loop->iteration }}
@endforeach
@endif @endif @if (count($after_work_process) > 0) @foreach ($after_work_process as $Cuwork_process) @if (isset($aboutSec[$Cuwork_process->id])) @if ($aboutSec[$Cuwork_process->id] == 1) @php $cuWorkProcess = App\Models\CustomSectionContent::where('custom_section_id', $Cuwork_process->id) ->where('language_id', $currentLanguageInfo->id) ->first(); @endphp

{{ @$cuWorkProcess->section_name }}

{!! @$cuWorkProcess->content !!}
@endif @endif @endforeach @endif @if ($secInfo->about_testimonial_section_status == 1)

{{ !empty($sectionContent->testimonial_section_title) ? $sectionContent->testimonial_section_title : 'What Customers Say About Our Booking Systems ' }}

{{ !empty($sectionContent->testimonial_section_subtitle) ? $sectionContent->testimonial_section_subtitle : 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolorum omnis natus cumque possimus dicta suscipit enim, aperiam, voluptatum quis deleniti. ' }}

@if (count($testimonials) > 0)
@foreach ($testimonials as $testimonial)
Person Image
{{ $testimonial->name }}
{{ $testimonial->occupation }}
{{ $testimonial->rating }} {{ __('star of') }} {{ $total_testimonial }} @if ($total_testimonial > 1) {{ __('reviews') }} @else {{ __('review') }} @endif

{{ $testimonial->comment }}

@endforeach
@else

{{ __('NO TESTIMONIAL FOUND') }}!

@endif
Image
@endif @if (count($after_testimonial) > 0) @foreach ($after_testimonial as $Cutestimonial) @if (isset($aboutSec[$Cutestimonial->id])) @if ($aboutSec[$Cutestimonial->id] == 1) @php $cuTestimonial = App\Models\CustomSectionContent::where('custom_section_id', $Cutestimonial->id) ->where('language_id', $currentLanguageInfo->id) ->first(); @endphp

{{ @$cuTestimonial->section_name }}

{!! @$cuTestimonial->content !!}
@endif @endif @endforeach @endif @if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif @endsection