@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')

{{ $pageTitle }} List

@php $viewStatus_options = ['' => 'Select any', ...$activeStatus ?? []]; $searchElements[]=['element' => 'fillProgramId']; $searchElements[]=['element' => 'fillSemesterClassId']; if($companyType !== 'UNV'){ $searchElements[]=['element' => 'fillSemesterClassGroupId']; }else{ $searchElements[] = ['element' => 'fillFacultyId']; $searchElements[] = ['element' => 'fillDepartmentId']; } $searchElements[]=['element' => 'fillSectionId']; $searchElements[]=['element' => 'custom', 'name' => 'fillStatus', 'type' => 'select', 'label' => 'Status', 'options' => $viewStatus_options]; $searchElements[]=['element' => 'dateRange']; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements]) @if($companyType !== 'UNV') @endif
Sl {{ $companyType === 'UNV' ? 'Program' : 'Medium/Version' }} Session {{ $companyType === 'UNV' ? 'Semester' : 'Class' }} GroupSection Student ID Student Father Date of Birth Phone Number Status Action
{!! Form::hidden('hidden_student_id', null, ['id' => 'hidden_student_id']) !!} {!! Form::hidden('hidden_fees_config_details_id', null, ['id' => 'hidden_fees_config_details_id']) !!} {{-- Student Fees Collection Modal Start --}} @php($feesCollectionUrl = route('eims_student_fees_collection_store')) {{-- Form Sumission Script --}} {{-- Student Fees Collection Modal End --}} @endsection