{!! Form::label('contracts', 'Contracts') !!}
{!! Form::select('contracts', [], [], [
'class' => 'form-select',
'data-kt-select2' => 'true',
'data-placeholder' => __('All'),
'data-allow-clear' => 'true',
'data-remote' => route('resource-select', ['Contract', 'hasContract'])
]) !!}
{!! Form::label('programs', 'Programs') !!}
{!! Form::select('programs', [], [], [
'class' => 'form-select',
'data-kt-select2' => 'true',
'data-placeholder' => __('All'),
'data-allow-clear' => 'true',
'data-remote' => route('resource-select', ['Program', 'hasContract'])
]) !!}
{!! Form::label('project Status', 'Contract Status') !!}
{!! Form::select('filter_status', $contract_statuses, null, ['class' => 'form-select', 'data-kt-select2' => 'true', 'data-placeholder' => 'All', 'data-allow-clear' => 'true']) !!}
{!! Form::label('contract_type', 'Contract Type') !!}
{!! Form::select('contract_type', $contractTypes, null, ['class' => 'form-select', 'data-kt-select2' => 'true', 'data-placeholder' => 'All', 'data-allow-clear' => 'true']) !!}
{!! Form::label('companies', 'Client') !!}
{!! Form::select('companies', [], null, [
'class' => 'form-select',
'data-kt-select2' => 'true',
'data-placeholder' => 'All Clients',
'data-allow-clear' => 'true',
'data-remote' => route('resource-select', ['groupedCompany', 'hasContract']),
]) !!}