![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/storage/framework/views/ |
<?php /** @var \App\Models\ClinicSchedule $clinicSchedule */ ?> <div class="align-items-center justify-content-between mt-md-0 mt-10"> <div class="d-flex align-items-center mb-3 add-slot"> <div class="d-inline-block"> <?php echo e(Form::select('startTimes['.$day.']', $slots, isset($clinicSchedule) ? $clinicSchedule->start_time : $slots[array_key_first($slots)] ,['class' => 'form-control form-control-solid form-select', 'data-control'=>'select2'])); ?> </div> <span class="small-border">-</span> <div class="d-inline-block"> <?php echo e(Form::select('endTimes['.$day.']', $slots, isset($clinicSchedule) ? $clinicSchedule->end_time : $slots[array_key_last($slots)],['class' => 'form-control form-control-solid form-select', 'data-control'=>'select2'])); ?> </div> </div> </div> <?php /**PATH /home/corals/clinic.corals.io/resources/views/clinic_schedule/slot.blade.php ENDPATH**/ ?>