@extends('Layouts.hms_master_full_width') @section('content') @php $elementArray = array(); $elementArray['academicDepartment'] = ['label' => 'Academic Department', 'type' => 'select', 'id' => 'department_id', 'name' => 'department_id', 'onload' => true]; $elementArray['designation'] = ['label' => 'Designation', 'type' => 'select', 'id' => 'designation_id', 'name' => 'designation_id', 'onload' => true]; $elementArray['activeInactiveStatus'] = [ 'label' => 'Status', 'type' => 'select', 'id' => 'activeInactiveStatus', 'name' => 'activeInactiveStatus', 'options' => [ '' => 'All', 'active'=>'Active', 'inactive'=>'Inactive'] ]; $ignoreElements = [ 'zone', 'area', 'branch', 'startDate', 'endDate' ]; @endphp
@endsection