@php $groupedSlots = $slots_emp->groupBy('slot_day'); // Get the currently selected slot IDs from the staff's slotEmp relationship $selectedSlots = isset($staff) ? $staff->slotEmp->pluck('id')->toArray() : []; @endphp @foreach ($groupedSlots as $day => $slots)
{{ $day }}
@foreach ($slots as $slot)
id, old('selected_slots', $selectedSlots)) ? 'checked' : '' }}>
@endforeach
@endforeach