UNIVERSITY OF MAIDUGURI
{{ $departmentStudent->school->school_title}}
@if (($departmentStudent->dept_title === 'COMPUTER SCIENCE') || ($departmentStudent->dept_title === 'MATHEMATICS') || ($departmentStudent->dept_title === 'STATISTICS'))
DEPARTMENT OF MATHEMATICAL SCIENCE
PROGRAM OF {{ $departmentStudent->dept_title}}
@elseif(($departmentStudent->dept_title === 'PHYSICAL EDUCATION') || ($departmentStudent->dept_title === 'HEALTH EDUCATION'))
DEPARTMENT OF PHYSICAL AND HEALTH EDUCATION
PROGRAM OF {{ $departmentStudent->dept_title}}
@elseif(($departmentStudent->dept_title === 'BOTANY') || ($departmentStudent->dept_title === 'ZOOLOGY') || ($departmentStudent->dept_title === 'ENVIRONMENTAL BIOLOGY'))
DEPARTMENT OF BIOLOGICAL SCIENCE
PROGRAM OF {{ $departmentStudent->dept_title}}
@elseif(($departmentStudent->dept_title === 'CHEMISTRY') || ($departmentStudent->dept_title === 'INDUSTRIAL CHEMISTRY') || ($departmentStudent->dept_title === 'PETROLEUM CHEMISTRY'))
DEPARTMENT OF PURE AND APPLIED CHEMISTRY
PROGRAM OF {{ $departmentStudent->dept_title}}
@elseif(($departmentStudent->dept_title === 'FACULTY OF VETERINARY MEDICINE'))
DEPARTMENT OF VETERINARY MEDICINE
@else
DEPARTMENT OF {{ $departmentStudent->dept_title}}
@endif
{{ Carbon\Carbon::parse($start_session->start_at)->year }} / {{ Carbon\Carbon::parse($start_session->end_at)->year }}
{{-- student Details --}}
NAME: {{ $this->student->fullname }}
ID NUMBER: {{ $this->student->student_id_number }}
LEVEL: {{ $this->student->level }}
FIRST SEMESTER COURSES @if ($vetenarySubsidiaries) @forelse ($vetenarySubsidiaries as $vetenarySubsidiary ) @forelse($vetenarySubsidiary->subsidiriesCourses as $course) @if(($course->pivot->level == $student->level) && ($course->pivot->semester_offer === 'FIRST') && ($course->pivot->elective != 'Elective')) @if($course->pivot->directEntryCourse != 'yes') {{ $course->course_code }} {{-- bg-{{ $transaction->status_color }}-100 text-{{ $transaction->status_color }}-800 --}} {{ $course->course_title }} {{ $course->units }} {{-- {{ $course->pivot->semester_offer }} --}} {{-- {{ $course->pivot->level }} --}} @endif {{-- De student course Display --}} @if(($course->pivot->directEntryCourse === 'yes') && ($studentEntry === $academicSession) && ($student->level == 200) && ($course->pivot->elective != 'Elective') && ($course->pivot->semester_offer === 'FIRST')) {{ $course->course_code }} {{-- bg-{{ $transaction->status_color }}-100 text-{{ $transaction->status_color }}-800 --}} {{ $course->course_title }} {{ $course->units }} {{-- {{ $course->pivot->semester_offer }} --}} {{-- {{ $course->pivot->level }} --}} @endif @endif @empty @endforelse @empty @endforelse @endif