@extends('tickets.layouts.public') @section('title', $event->name . ' - Loyaltiya Tickets') @section('content')
{{ $event->event_starts_at->format('M') }} {{ $event->event_starts_at->format('d') }}

{{ $event->name }}

{{ $event->isOnline() ? 'Online Event' : 'Venue Event' }} Starts on {{ $event->event_starts_at->format('D, M d, Y h:i A') }} {{ $event->event_starts_at->diffForHumans($event->event_ends_at, true) }}
{{ $event->name }}

About This Event

@if ($event->description)

{!! nl2br(e($event->description)) !!}

@else

No description has been added for this event yet.

@endif
@if ($event->images->count())

Event Gallery

@foreach ($event->images as $image) @endforeach
@endif

Event Details

days
Hours
Minutes
Seconds

Organised by

{{ $event->admin->name }}

Date and Time

{{ $event->event_starts_at->format('D, M d, Y h:i A') }}
@if ($event->isOffline())

Location

{{ $event->venue_name }}

{{ collect([$event->address_1, $event->address_2, $event->city, $event->state, $event->zip_code, $event->country])->filter()->implode(', ') }}

@if ($event->google_map_link) View Map @endif
@else

Streaming Link

Available after booking confirmation

@endif
@csrf
Select Tickets
{{-- Guests can pick tickets freely; they'll be asked to sign in only when they hit "Book Now". Selection + capacity reservation happens now, so nothing they picked is lost during sign-in. --}} @guest('customer')
You'll sign in to complete your booking after selecting tickets.
@endguest
@foreach ($event->ticketTypes as $ticketType)
{{ $ticketType->name }}
{{ $ticketType->description }}
{{ $event->currency }} {{ number_format($ticketType->price, 2) }} @if (! is_null($ticketType->remaining())) {{ $ticketType->remaining() }} left @endif
- +
@endforeach @if ($event->age_restriction)

Age restriction: {{ $event->age_restriction }}+

@endif
0x Ticket(s)
Subtotal {{ $event->currency }} 0.00
GST ({{ rtrim(rtrim(number_format(config('services.tax.gst_rate', 0.05) * 100, 2), '0'), '.') }}%) {{ $event->currency }} 0.00

Total {{ $event->currency }} 0.00

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @push('scripts') @endpush