@extends("front.$version.layout") @section('styles') @endsection @section('pagename') - {{ __('Event') }} - {{ convertUtf8($event->title) }} @endsection @section('meta-keywords', "$event->meta_keywords") @section('meta-description', "$event->meta_description") @section('breadcrumb-title', $bs->event_details_title) @section('breadcrumb-subtitle', strlen($event->title) > 30 ? mb_substr($event->title, 0, 30, 'utf-8') . '...' : $event->title) @section('breadcrumb-link', __('Event Details')) @section('content')
@if ($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
@if ($event->image != 'null')
@foreach (json_decode($event->image) as $event_image) @endforeach
@foreach (json_decode($event->image) as $event_image)
@endforeach
@endif

{{ convertUtf8($event->title) }}

{{ date_format(date_create($event->date), 'M d,Y') }} @if (!empty($event->venue_location)) {{ $event->venue_location }} @endif

{{ $bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : '' }}{{ $event->cost }}{{ $bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : '' }} / {{ __('per ticket') }}

{!! replaceBaseUrl(convertUtf8($event->content)) !!}

{{ $event->eventCategories->name }}

{{ $event->venue_location }}

@if ($event->available_tickets > 0)
  • @if (!is_null($event->video))
  • @endif
{{ __('Add To Cart') }} @else
{{ __('No tickets are available') }}
@endif
@php if (Auth::check()) { $name = Auth::user()->fname; $email = Auth::user()->email; $phone = Auth::user()->number; } else { $name = ''; $email = ''; $phone = ''; } @endphp
{{ __('Start') }}:

{{ date_format(date_create($event->date), 'M d,Y') }} @ {{ date_format(date_create($event->time), 'h:i:sa') }}

{{ __('Cost') }}:

{{ $bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : '' }}{{ $event->cost }}{{ $bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : '' }}

{{ __('Event Categories') }}:

{{ convertUtf8($event->eventCategories->name) }}, {{ __('Event') }}

{{ convertUtf8($event->organizer) }}

@if (!empty($event->organizer_email)) @endif @if (!empty($event->organizer_website)) @endif

{{ convertUtf8($event->title) }}

{{ convertUtf8($event->venue) }}
{{ convertUtf8($event->venue_location) }}

@if (!empty($event->venue_location))
@endif
@if (count($moreEvents) > 0)

{{ __('MAYBE YOU LIKE') }}

@foreach ($moreEvents as $moreEvent)

{{ convertUtf8($moreEvent->title) }}

{{ $bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : '' }}{{ $moreEvent->cost }}{{ $bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : '' }}

@endforeach
@endif
@endsection @section('scripts') {{-- --}} @endsection