@extends('Layouts.hms_master_full_width') @section('content') @php $elementArray = array(); $elementArray['branch'] = ['label' => 'Branch', 'type' => 'select', 'id' => 'branchId', 'name' => 'branchId']; $elementArray['academicSession'] = ['label' => 'Academic Session', 'type' => 'select', 'id' => 'session_id', 'name' => 'session_id', 'onload' => true]; $elementArray['academicStatus'] = ['label' => 'Academic Program', 'type' => 'select', 'id' => 'academic_status', 'name' => 'academic_status', 'onload' => true]; $elementArray['academicYear'] = ['label' => 'Academic Year', 'type' => 'select', 'id' => 'academic_year', 'name' => 'academic_year', 'onload' => true]; $elementArray['academicDepartment'] = ['label' => 'Academic Department', 'type' => 'select', 'id' => 'department_id', 'name' => 'department_id', 'onload' => true]; $elementArray['building'] = ['label' => 'Building', 'type' => 'select', 'id' => 'building_id', 'name' => 'building_id', 'onload' => true]; $elementArray['floor'] = ['label' => 'Floor', 'type' => 'select', 'id' => 'floor_id', 'name' => 'floor_id','default_option' => 'All']; $elementArray['room'] = ['label' => 'Rooms', 'type' => 'select', 'id' => 'room_id', 'name' => 'room_id','default_option' => 'All']; $elementArray['seat'] = ['label' => 'Seats', 'type' => 'select', 'id' => 'seat_id', 'name' => 'seat_id','default_option' => 'All']; $elementArray['startDate'] = ['label' => 'start Date', 'type' => 'startDate', 'id' => 'startDate', 'name' => 'startDate', 'onload' => true]; $elementArray['endDate'] = ['label' => 'End Date', 'type' => 'endDate', 'id' => 'endDate', 'name' => 'endDate', 'onload' => true]; $ignoreElements = [ 'zone', 'area', 'branch', 'startDate', 'endDate','academicDepartment', 'academicStatus', 'academicSession', 'studentStatus' ]; @endphp
@csrf @include('elements.report.common_filter.filter_options', ['elements' => $elementArray, 'branchWithoutHO' => true, 'branchWithoutHOButSelectAll' => true])
@endsection