@if($query == 1)

List of Assessed Students
SY: {{$school_year->school_year}} - {{$school_year->school_year + 1}}

Print Report




  @if(count($students) != 0) @foreach($students as $student) @endforeach
- Student No. Student Name Course/Track Grade / Year Level
{{++$c}} {{$student->idno}} {{$student->lastname}}, {{$student->firstname}} {{$student->middlename}} {{$student->extensionname}} {{$student->program_code}} {{$student->track}} {{$student->level}}
@else

Nothing to display.

@endif
@elseif($query == 2)

List of Possible Graduating Students
(4th and 5th Yr. College Students and 2nd Year TESDA)
SY: {{$school_year->school_year}} - {{$school_year->school_year + 1}}

Print Report




  @if(count($students) != 0) @foreach($students as $student) @endforeach
- Student No. Student Name Degree Program Year Level Birthday Gender
{{++$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}}
@else

Nothing to display.

@endif
@endif