@extends('layouts.public-booking', ['title' => 'Select Date and Time - Booklio']) @include('public.booking.partials.data') @section('content')
@include('public.booking.partials.steps', ['current' => 3])
@forelse ($slotGroups as $group => $slots)

{{ $group }}

@foreach ($slots as $slotValue => $slotLabel) {{ $slotLabel }} @endforeach
@empty

No slots available

This date is full or outside working hours. Please choose another date.

@endforelse
@include('public.booking.partials.summary-card')
@endsection