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

{{ $pageTitle }} List

@php // Define options for the view status filter $viewStatus_options = ['' => 'Select any', 'pending' => 'Pending', 'rejected' => 'Rejected']; // Add search elements based on the company type if($companyType === 'UNV'){ $searchElements[] = ['element' => 'fillFacultyId']; $searchElements[] = ['element' => 'fillDepartmentId']; } $searchElements[] = ['element' => 'fillProgramId','label' => $companyType === 'UNV' ? 'Program' : 'Medium/Version']; $searchElements[] = ['element' => 'fillSemesterClassId', 'label' => $companyType === 'UNV' ? 'Semester' : 'Class']; if($companyType !== 'UNV'){ $searchElements[] = ['element' => 'fillSemesterClassGroupId', 'label' => 'Group']; $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 Admission Date Admission No {{ $companyType === 'UNV' ? 'Program' : 'Medium/Version' }} {{ $companyType === 'UNV' ? 'Semester' : 'Class' }} Group SectionApplicant Name Father Date of Birth Phone Number Status Action
@php($feesCollectionUrl = route('eims_admission_fees_store')) {{-- Form Submission Script --}} {{-- Admission Fees Collection Modal End --}} @endsection