{{-- programs --}}
{!! Form::label('filter_programs', 'Programs') !!}
{!! Form::select('filter_programs', [], [], [
'class' => 'form-select',
'data-kt-select2' => 'true',
'multiple' => 'multiple',
'data-placeholder' => __('All'),
'data-allow-clear' => 'true',
'data-remote' => route('resource-select', ['Program', 'hasAward'])
]) !!}
{!! Form::label('filter_candidates', 'Candidates') !!}
{!! Form::select('filter_candidates', [], null, [
'class' => 'form-select',
'data-kt-select2' => 'true',
'data-placeholder' => 'All Candidates',
'data-allow-clear' => 'true',
'multiple' => 'multiple',
'data-remote' => route('resource-select', ['groupedCompany', 'filter_has_awards' => 1]),
]) !!}
{{-- miscellaneous filter --}}
{!! Form::label('miscellaneous_filter', 'Miscellaneous') !!}
{!! Form::select('miscellaneous_filter', [
'Currency' => [
'localCurrency' => 'Local Currency',
'foreignCurrency' => 'Foreign Currency',
],
'Payment' => [
'fully_paid' => 'Fully Paid',
'partially_paid' => 'Partially Paid',
'no_payment' => 'No Payment'
]
], '',
[
'class' => 'form-select', 'data-kt-select2' => 'true',
'data-placeholder' => 'Filter',
'multiple' => 'multiple',
'data-allow-clear' => 'true'
]) !!}