@extends('frontend.layout') @section('pageHeading') {{ __('Home') }} @endsection @php $metaKeywords = !empty($seo->meta_keyword_home) ? $seo->meta_keyword_home : ''; $metaDescription = !empty($seo->meta_description_home) ? $seo->meta_description_home : ''; @endphp @section('meta-keywords', "{{ $metaKeywords }}") @section('meta-description', "$metaDescription") @section('hero-section') @if ($heroSection)
@else
@endif

{{ $heroSection ? $heroSection->first_title : __('Event Ticketing and Booking System') }}

{{ $heroSection ? $heroSection->second_title : __( 'This is an affordable and powerful event ticketing platform for event organisers, promoters, and managers. Easily create, promote and sell tickets to your events of every type and size.', ) }}

@endsection @section('content') @if ($secInfo->featured_section_status == 1)

{{ $secTitleInfo ? $secTitleInfo->event_section_title : __('Featured Events') }}

@if ($eventCategories->isEmpty())

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

@else @endif
@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
@endif @if ($secInfo->categories_section_status == 1)

{{ $secTitleInfo ? $secTitleInfo->category_section_title : __('Categories') }}

@if (count($eventCategories) > 0) @foreach ($eventCategories as $item) Category
{{ $item->name }}
@endforeach @else

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

@endif
@endif @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->how_work_section_status == 1) @if ($howWork)

{{ $howWork->title }}

{{ $howWork->text }}

@foreach ($howWorkItems as $item)
{{ $item->serial_number }}

{{ $item->title }}

{{ $item->text }}

@endforeach
@else

{{ __('No Data Found for how work section') }}

@endif @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