DMMC INSTITUTE OF HEALTH SCIENCES |
#143 Narra St., Mountainview Subd., Tanauan City, Batangas |
|
|
@if($query == 1)
List of Assessed Students |
SY: {{$school_year->school_year}} - {{$school_year->school_year + 1}} |
|
|
|
- |
Student No. |
Student Name |
Course/Track |
Grade / Year Level |
@foreach($students as $student)
|
{{++$c}} |
{{$student->idno}} |
{{$student->lastname}}, {{$student->firstname}} {{$student->middlename}} {{$student->extensionname}} |
{{$student->program_code}} {{$student->track}} |
{{$student->level}} |
@endforeach
@elseif($query == 2)
List of Possible Graduating Students |
SY: {{$school_year->school_year}} - {{$school_year->school_year + 1}} |
|
|
|
- |
Student No. |
Student Name |
Degree Program |
Year Level |
Birthday |
Gender |
@foreach($students as $student)
|
{{++$c}} |
{{$student->idno}} |
{{$student->lastname}}, {{$student->firstname}} {{$student->middlename}} {{$student->extensionname}} |
{{$student->program_code}} |
{{$student->level}} Year |
{{date_format(date_create($student->birthdate),"M d, Y")}} |
{{$student->gender}} |
@endforeach
@endif
|
|
|
Prepared by:
|
{{Auth::user()->firstname}} {{Auth::user()->lastname}}
|