@lang('messages.selectBookingDetail')

@php $startOfWeek = now()->timezone(timezone()); $endOfWeek = now()->timezone(timezone())->addDays(6); $period = \Carbon\CarbonPeriod::create($startOfWeek, $endOfWeek); $currentTime = now()->timezone(timezone())->format('H:i:s'); @endphp {{-- Date Selection --}}
{{-- Guest Selection --}}
{{-- Slot Type Selection --}}
{{-- Time Slots --}}

@lang('messages.selectTimeSlot')

@if (empty($timeSlots) || !$this->isSlotTypeAvailable()) @lang('messages.noTimeSlot') @endif
    @foreach ($timeSlots as $timeSlot) @php $isDisabled = $this->isTimeSlotDisabled($timeSlot); @endphp
  • @endforeach
@error('availableTimeSlots') @enderror
{{-- Reservation Form (only shown when slots are available) --}} @if (!empty($timeSlots) && $this->isSlotTypeAvailable())
@if (is_null(customer())) @lang('messages.loginForReservation') @else @lang('app.reserveNow') @endif
@endif