@extends('Layouts.hms_master_full_width') @section('content') @php $elementArray = array(); $elementArray['academicSession'] = ['label' => 'Fee Generation Year', 'type' => 'select', 'id' => 'session_id', 'name' => 'session_id', 'onload' => true, 'required' => 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['academicpackages'] = ['label' => 'Package', 'type' => 'select', 'id' => 'packageId', 'name' => 'packageId', 'onload' => true, 'required' => true]; $elementArray['student'] = ['label' => 'Student Hall Id', 'type' => 'text', 'id' => 'hall_id', 'name' => 'hall_id', 'onload' => true]; // $elementArray['invoice_status'] = ['label' => 'Invoice Status', 'type' => 'select', 'id' => 'invoice_status', 'name' => 'invoice_status', 'onload' => true]; $elementArray['invoice_status'] = [ 'label' => 'Invoice Status', 'type' => 'select', 'id' => 'invoice_status', 'name' => 'invoice_status', 'options' => [ '' => 'All', '1'=>'Generated', '2'=>'Not Generated'] ]; $elementArray['payment_status'] = [ 'label' => 'Payment Status', 'type' => 'select', 'id' => 'payment_status', 'name' => 'payment_status', 'options' => [ '' => 'All', '1'=>'Complete', '2'=>'Incomplete'] ]; $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