{{ html()->label(__('messages.time').'
', 'Time')->class('form-control-label col-md-12') }}
@foreach ($slotsArray['days'] as $day)
@if (isset($day))
{{-- --}}
@for ($hour = 0; $hour < 24; $hour++)
-
@php
$slotTime = sprintf('%02d:00', $hour);
$isActive = in_array($slotTime, $activeSlots[$day] ?? []);
@endphp
{{ $slotTime }}
@endfor
@endif
@endforeach