@extends('layouts.main-app') @section('title') @section('content')
XCLV-banner @include('layouts.navbar')

Reserve Your Spot Now!

@if (session('success'))

Confirmation!

Your reservation has been successfully submitted!

Details of your reservation will be emailed to you shortly. Kindly check your spam if you don't find our confirmation email in your inbox.

@endif @if (!session('success')) @endif

Table Reservation System

TABLES/SEATS ON: {{ request()->input('reservation_date', now()->format('m-d-Y')) }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ $vvip2->name }}

STAGE

{{ $vvip3->name }}

{{ $vvip4->name }} @if ($vvip4->status === 'occupied') @elseif ($vvip4->status === 'unavailable') @endif

{{ $vvip1->name }} @if ($vvip1->status === 'occupied') @elseif ($vvip1->status === 'unavailable') @endif

{{ $vip3->name }} @if ($vip3->status === 'occupied') @elseif ($vip3->status === 'unavailable') @endif

{{ $vip2->name }} @if ($vip2->status === 'occupied') @elseif ($vip2->status === 'unavailable') @endif

{{ $vip1->name }} @if ($vip1->status === 'occupied') @elseif ($vip1->status === 'unavailable') @endif

@foreach (range(12, 71) as $id) @php // Find the seat by ID (assuming 'id' is the field name in your database) $seat = $seats->firstWhere('id', $id); @endphp @if ($id === 65)
@elseif ($seat && $seat->name)

{{ $seat->name }}

@endif @endforeach

{{ $vip4->name }} @if ($vip4->status === 'occupied') @elseif ($vip4->status === 'unavailable') @endif

{{ $vip5->name }} @if ($vip5->status === 'occupied') @elseif ($vip5->status === 'unavailable') @endif

{{ $vip6->name }} @if ($vip6->status === 'occupied') @elseif ($vip6->status === 'unavailable') @endif

{{ $vip7->name }} @if ($vip7->status === 'occupied') @elseif ($vip7->status === 'unavailable') @endif

@foreach (range(72, 84) as $id) @php // Find the seat by ID (assuming 'id' is the field name in your database) $seat = $seats->firstWhere('id', $id); @endphp @if ($seat && $seat->name)

{{ $seat->name }}

@endif @endforeach
BAR COUNTER

TABLE/BAR SEATS PRICES

@if ($vvip1->reservations->where('reservation_date', $selectedDate))

{{ $vvip1->name }}: {{ $vvip1->priceForDate($selectedDate) }} ({{ $vvip1->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vvip2->reservations->where('reservation_date', $selectedDate))

{{ $vvip2->name }}: {{ $vvip2->priceForDate($selectedDate) }} ({{ $vvip2->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vvip3->reservations->where('reservation_date', $selectedDate))

{{ $vvip3->name }}: {{ $vvip3->priceForDate($selectedDate) }} ({{ $vvip3->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vvip4->reservations->where('reservation_date', $selectedDate))

{{ $vvip4->name }}: {{ $vvip4->priceForDate($selectedDate) }} ({{ $vvip4->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip1->reservations->where('reservation_date', $selectedDate))

{{ $vip1->name }}: {{ $vip1->priceForDate($selectedDate) }} ({{ $vip1->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip2->reservations->where('reservation_date', $selectedDate))

{{ $vip2->name }}: {{ $vip2->priceForDate($selectedDate) }} ({{ $vip2->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip3->reservations->where('reservation_date', $selectedDate))

{{ $vip3->name }}: {{ $vip3->priceForDate($selectedDate) }} ({{ $vip3->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip4->reservations->where('reservation_date', $selectedDate))

{{ $vip4->name }}: {{ $vip4->priceForDate($selectedDate) }} ({{ $vip4->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip5->reservations->where('reservation_date', $selectedDate))

{{ $vip5->name }}: {{ $vip5->priceForDate($selectedDate) }} ({{ $vip5->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip6->reservations->where('reservation_date', $selectedDate))

{{ $vip6->name }}: {{ $vip6->priceForDate($selectedDate) }} ({{ $vip6->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @if ($vip7->reservations->where('reservation_date', $selectedDate))

{{ $vip7->name }}: {{ $vip7->priceForDate($selectedDate) }} ({{ $vip7->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@endif @php $barSeats = range(72, 84); $standingSeats = range(12, 71); @endphp
@foreach ($barSeats as $id) @php $seat = $seats->firstWhere('id', $id); @endphp @if ($seat)

BAR SEAT {{ $seat->name }}: {{ $seat->priceForDate($selectedDate) }}({{ $seat->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@if ($loop->first) @endif
@endif @endforeach
@foreach ($standingSeats as $id) @php $seat = $seats->firstWhere('id', $id); @endphp @if ($seat)

Standing Table {{ $seat->name }}: {{ $seat->priceForDate($selectedDate) }} ({{ $seat->doorchargeForDate($selectedDate) ?: 'No Door Charge' }})

@if ($loop->first) @endif
@endif @endforeach

FOR EVENTS OR LARGE BOOKING, CONTACT US DIRECTLY AT 0954-451-8755 OR EMAIL US AT XCLV.DAVAO@gmail.com

@include('layouts.footer')
@endsection