@php
$types = [
'' => 'Filter by Type',
'noType' => 'No Type',
'regular' => 'Regular',
'associate' => 'Associate',
]
@endphp
{!! Form::select('type_filter', $types, null, array(
'id' => 'type_id_input',
'class' => 'form-control' )) !!}
@php
$status = [
'' => 'Filter by Status',
'active' => 'Active',
'inactive' => 'Inactive',
]
@endphp
{!! Form::select('status_filter', $status, null, array(
'id' => 'status_id_input',
'class' => 'form-control' )) !!}
@php
$commEmpty = [
0 => 'Filter by Committees',
];
$committeesArray = array_merge($commEmpty, $committees);
@endphp
{!! Form::select('committees_filter', $committeesArray, null, array(
'id' => 'committees_id_input',
'class' => 'form-control' )) !!}
@php
$wgEmpty = [
0 => 'Filter by WG / TF',
];
$wg = array_merge($wgEmpty, $workGroups);
@endphp
{!! Form::select('wg_filter', $wg, null, array(
'id' => 'wg_id_input',
'class' => 'form-control' )) !!}