{{ __('messages.common.filter_option') }}

{{ Form::select( 'payment_type', collect($filterHeads[0])->toArray(), \App\Models\Appointment::PAYMENT_TYPE_ALL, ['class' => 'form-control form-control-solid form-select','placeholder'=>'All', 'data-control' => 'select2', 'id' => 'trPaymentMehtod'], ) }}
{{ Form::select('status', collect($filterHeads[1])->toArray(), null , [ 'class' => 'form-control form-control-solid form-select', 'data-control' => 'select2', 'id' => 'transactionStatus', 'placeholder'=>'All' ]) }}
@php $servicesArr = App\Models\Service::get()->pluck('name', 'id')->toArray(); @endphp
{{ Form::select('services_id', $servicesArr, null, ['class' => 'form-select io-select2', 'placeholder' => __('messages.common.select_service'), 'id' => 'transactionServices', 'data-control' => 'select2']) }}
{{ Form::select('doctor_id', [], null, ['class' => 'form-select io-select2', 'placeholder' => __('messages.common.select_doctor'), 'id' => 'transactionDoctor', 'data-control' => 'select2']) }}