@php
$status = [
'' => 'Filter by Status',
'active' => 'Active',
'inactive' => 'Inactive',
'pendingApproval' => 'Pending Approval',
'block' => 'Block',
]
@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' )) !!}