@lang('messages.selectBookingDetail')

@php $startOfWeek = now()->timezone(timezone()); $endOfWeek = now()->timezone(timezone())->addDays(6); $period = \Carbon\CarbonPeriod::create($startOfWeek, $endOfWeek); // Create a period for the week @endphp

@lang('messages.selectTimeSlot')

    @foreach ($timeSlots as $timeSlot)
  • @endforeach
@error('availableTimeSlots') {{ $message }} @enderror
@if (!empty($timeSlots))
@if (is_null(customer())) @lang('messages.loginForReservation') @else @lang('app.reserveNow') @endif @else @lang('messages.noTimeSlot') @endif