@foreach ($days as $day)
@php
$rows = $schedules[$day->value] ?? [];
$hasRows = count($rows) > 0;
@endphp
{{ $day->label() }}
@if (!$hasRows)
Día no laboral
@endif
@if ($hasRows)
@foreach ($rows as $idx => $row)
{{-- Time range --}}
{{-- Active toggle --}}
{{-- Remove --}}
@endforeach
@endif
@endforeach
{{-- Save --}}