@extends('eventmie::layouts.app') @section('title', setting('seo.meta_title')) @section('meta_description', setting('seo.meta_description')) @section('content') @php $perPage = 3; @endphp
@component('eventmie::skeleton.banner') @endcomponent
@if ($featured_events->isNotEmpty())

@lang('eventmie-pro::em.featured_events')

@component('eventmie::skeleton.event') @endcomponent
@endif @if ($top_selling_events->isNotEmpty())

@lang('eventmie-pro::em.top_selling_events')

@component('eventmie::skeleton.event') @endcomponent
@endif @if ($upcomming_events->isNotEmpty())

@lang('eventmie-pro::em.upcoming_events')

@component('eventmie::skeleton.event') @endcomponent
@endif @if ($topVenues->isNotEmpty())
@lang('eventmie-pro::em.cities_events')
@foreach ($topVenues as $item) @php $bgimg = '/images/placeholder.jpg'; if (!empty(json_decode($item->images, true))) { $bgimg = json_decode($item->images, true)[0]; } @endphp @endforeach
@endif @if (!empty($categories))

@lang('eventmie-pro::em.event_categories')

@lang('eventmie-pro::em.explore_categories')

@endif @if (!empty($posts))

@lang('eventmie-pro::em.blogs')

@endif

@lang('eventmie-pro::em.how_it_works')

@lang('eventmie-pro::em.organiser_1')

@lang('eventmie-pro::em.organiser_1_info')

1
@lang('eventmie-pro::em.organiser_2')

@lang('eventmie-pro::em.organiser_2_info')

2
@lang('eventmie-pro::em.organiser_3')

@lang('eventmie-pro::em.organiser_3_info')

3
@lang('eventmie-pro::em.customer_1')

@lang('eventmie-pro::em.customer_1_info')

1
@lang('eventmie-pro::em.customer_2')

@lang('eventmie-pro::em.customer_2_info')

2
@lang('eventmie-pro::em.customer_3')

@lang('eventmie-pro::em.customer_3_info')

3
@endsection @section('javascript') @vite(['eventmie-pro/resources/js/welcome/index.js']) @stop