@if (!isset($project))
{!! Form::label('projects', 'Projects') !!}
{!! Form::select('projects[]', [], [], [
'class' => 'form-select gantt_filter',
'data-kt-select2' => 'true',
'data-placeholder' => __('All'),
'data-allow-clear' => 'true',
'data-dropdownparent' => '#gantt-chart-card',
'data-remote' => route('resource-select', ['Project', 'hasContract'])
]) !!}
{!! Form::label('programs', 'Programs') !!}
{!! Form::select('programs', [], [], [
'class' => 'form-select gantt_filter',
'data-kt-select2' => 'true',
'data-placeholder' => __('All'),
'data-allow-clear' => 'true',
'data-dropdownparent' => '#gantt-chart-card',
'data-remote' => route('resource-select', ['Program', 'hasContract'])
]) !!}
{!! Form::label('project Status', 'Contract Status') !!}
{!! Form::select('filter_status', ['' => 'All'] + $statuses, '1', ['class' => 'form-select gantt_filter', '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 gantt_filter', 'data-kt-select2' => 'true', 'data-placeholder' => 'Type']) !!}
{!! Form::label('companies[]', 'Client') !!}
{!! Form::select('companies[]', [], [], [
'class' => 'form-select gantt_filter',
'data-kt-select2' => 'true',
'data-placeholder' => 'All',
'data-allow-clear' => 'true',
'data-dropdownparent' => '#gantt-chart-card',
'data-remote' => route('resource-select', ['groupedCompany', 'hasContract'])
]) !!}
@endif
{!! Form::label('search_task', 'Search') !!}
{!! Form::text('search_task', null, ['class' => 'form-control gantt_filter', 'placeholder' => 'Search']) !!}
{!! Form::label('date_range', 'Date Range') !!}
{!! Form::text('date_range', null, [
'class' => 'form-control gantt_filter flatpickr',
'data-flatpickr' => '{"mode": "range"}',
'placeholder' => 'Date Range'
]) !!}
{{-- select year$contractDueDateYears --}}
{!! Form::label('filter_ending_in_year', 'Ending In') !!}
{!! Form::select('filter_ending_in_year', $contractDueDateYears, null, ['class' => 'form-select gantt_filter', 'data-kt-select2' => 'true', 'data-placeholder' => 'Any', 'data-allow-clear' => 'true']) !!}