@if ($clinicSchedule = $clinicSchedules->where('day_of_week', $day)->first())
@include('clinic_schedule.slot', [
'slot' => $slots,
'day' => $day,
'clinicSchedule' => $clinicSchedule,
])
@else
@include('clinic_schedule.slot', ['slot' => $slots, 'day' => $day])
@endif