{{ Form::label('Time', __('messages.time').'
', ['class' => 'form-control-label col-md-12'], false) }}
@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