@extends('admin.layouts.main', [ 'scripts' => [ path_asset('path.backoffice.js_path') . '/view/member/member-list.js' ] ]) @section('content')

Member List

@if($canInsert) @endif
@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' )) !!}
@php $optionsArr = ['id' => 'legal-committee', 'class' => 'form-check-input', 'data-role' => 'legal-committee']; @endphp {{ Form::checkbox('legal_committee', '1', null, $optionsArr) }}
@php $optionsArr = ['id' => 'legal-opinions', 'class' => 'form-check-input', 'data-role' => 'legal-opinions']; @endphp {{ Form::checkbox('legal_opinions', '1', null, $optionsArr) }}
ID Company Name Country Date created Notes Com / TF / WG Users State Types {{ trans('backend.actions') }}
@stop