Al-HUWAITI Shell
Al-huwaiti


Server : LiteSpeed
System : Linux server335.web-hosting.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User : cardxfeb ( 2452)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/cardxfeb/public_html/resources/views/vcards/appointment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/cardxfeb/public_html/resources/views/vcards/appointment/slot.blade.php
@php
    /** @var \App\Models\WeekDay $weekDaySlot */
@endphp
@if (!empty($time[$day]))
    @foreach ($time[$day] as $times)
        <div class="align-items-center justify-content-between mt-md-0 mt-10 timeSlot">
            <div class="d-flex align-items-center mb-3 add-slot">
                <div class="d-inline-block">
                    {{ Form::select('startTimes[' . $day . '][]', getSchedulesTimingSlot(), getTime($times['start_time']), ['class' => 'form-control', 'data-control' => 'select2']) }}
                </div>
                <span class="px-3">{{ __('messages.common.to') }}</span>
                <div class="d-inline-block">
                    {{ Form::select('endTimes[' . $day . '][]', getSchedulesTimingSlot(), getTime($times['end_time']), ['class' => 'form-control', 'data-control' => 'select2', 'disabled' => false]) }}
                </div>
                <a href="javascript:void(0)" class="deleteBtn">
                    <i class="fas fa-trash ms-3 text-danger"></i>
                </a>
            </div>
            <span class="error-msg text-danger"></span>
        </div>
    @endforeach
@else
    <div class="align-items-center justify-content-between mt-md-0 mt-10 timeSlot">
        <div class="d-flex align-items-center mb-3 add-slot">

            <div class="d-inline-block">
                {{ Form::select('startTimes[' . $day . '][]', getSchedulesTimingSlot(), null, ['class' => 'form-control', 'data-control' => 'select2']) }}
            </div>
            <span class="px-3">{{ __('messages.common.to') }}</span>
            <div class="d-inline-block">
                {{ Form::select('endTimes[' . $day . '][]', getSchedulesTimingSlot(), null, ['class' => 'form-control', 'data-control' => 'select2', 'disabled' => false]) }}
            </div>
            <a href="javascript:void(0)" class="deleteBtn">
                <i class="fas fa-trash ms-3 text-danger"></i>
            </a>
        </div>
        <span class="error-msg text-danger"></span>
    </div>
@endif

Al-HUWAITI Shell