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

{{$pageTitle}} List

@php $companyType ??= 'UNV'; if($companyType == 'UNV'){ $searchElements[] = ['element' => 'fillFacultyId', 'defaultValue' => request()->fillFacultyId]; } $searchElements[] = ['element' => 'fillProgramId', 'defaultValue' => request()->fillProgramId]; $searchElements[] = ['element' => 'fillSemesterClassId', 'defaultValue' => request()->fillSemesterClassId]; if($companyType !== 'UNV'){ $searchElements[] = ['element' => 'fillSemesterClassGroupId', 'defaultValue' => request()->fillSemesterClassGroupId]; } $searchElements[] = ['element' => 'fillSectionId', 'defaultValue' => request()->fillSectionId]; $searchElements[] = ['element' => 'custom', 'name' => 'student_id','id' => 'student_id', 'type' => 'select', 'label' => 'Student', 'options' => $studentsList ?? [], 'defaultValue' => request()->student_id]; @endphp @include('partials.searchPanel.main', ['searchElements' => $searchElements]) @if($companyType === 'UNV') @endif @if($companyType !== 'UNV') @endif
Sl Faculty {{$companyType == 'UNV' ? 'Program' : 'Medium/Version'}} {{ $companyType == 'UNV' ? 'Semester' : 'Class'}} Group Section Student Roll No {{ $companyType == 'UNV' ? 'Course' : 'Subject'}} Created By Action
@endsection