@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])
| Sl |
@if($companyType === 'UNV')
Faculty
|
@endif
{{$companyType == 'UNV' ? 'Program' : 'Medium/Version'}}
|
{{ $companyType == 'UNV' ? 'Semester' : 'Class'}}
|
@if($companyType !== 'UNV')
Group
|
@endif
Section
|
Student |
Roll No |
{{ $companyType == 'UNV' ? 'Course' : 'Subject'}}
|
Created By |
Action |