PATH:
home
/
rwabteecom
/
public_html_olld
/
resources
/
views
/
appointment
/
Editing: calander-button.blade.php
<div class="ms-auto"></div> <div class="dropdown d-flex align-items-center me-4 me-md-5" wire:ignore> <button class="btn btn btn-icon btn-primary text-white dropdown-toggle hide-arrow ps-2 pe-0" type="button" id="dropdownMenuAppoiment" data-bs-auto-close="outside" data-bs-toggle="dropdown" aria-expanded="false"> <i class='fas fa-filter'></i> </button> <div class="dropdown-menu py-0" aria-labelledby="dropdownMenuAppoiment"> <div class="text-start border-bottom py-4 px-7"> <h3 class="text-gray-900 mb-0">{{__('messages.common.filter')}}</h3> </div> @php $scheduleAppointmentType = \App\Models\ScheduleAppointment::TYPES; $appointmentStatus = \App\Models\ScheduleAppointment::STATUS; @endphp <div class="p-5"> <div class="mb-5"> <label for="exampleInputSelect2" class="form-label">{{__('messages.common.type')}}</label> {{ Form::select('type', getTranslatedData($scheduleAppointmentType), null,['class' => 'form-control form-select','data-control'=>"select2" ,'id' => 'appointmentType', 'wire:ignore']) }} </div> <div class="mb-5"> <label for="exampleInputSelect2" class="form-label">{{__('messages.common.status')}}</label> {{ Form::select('type', getTranslatedData($appointmentStatus), null,['class' => 'form-control form-select','data-control'=>"select2" ,'id' => 'appointmentStatus1', 'wire:ignore']) }} </div> <div class="d-flex justify-content-end"> <button type="reset" id="appointmentResetFilter" class="btn btn-secondary">{{__('messages.common.reset')}}</button> </div> </div> </div> </div> <a href="{{ route('appointments.calendar') }}" class="btn btn-icon btn-primary ps-2 pe-0 hide-arrow"><i class="fas fa-calendar-alt fs-2"></i></a>
SAVE
CANCEL