@extends('layouts.registrarapp') @section('content')

Student Information

@if ($status->academic_type !== "Senior High School") @else @endif @if($status->status == 4) @elseif($status->status == 3) @else @endif
Student No {{$student->idno}}
Name {{$student->firstname}} {{$student->middlename}} {{$student->lastname}} {{$student->extensionname}}
Course {{$status->program_name}} / {{$status->level}} YearStrand {{$status->level}} / {{$status->track}}
Current School Year SY: {{$school_year->school_year}} - {{$school_year->school_year + 1}}@if($school_year->period != "yearly") / {{$school_year->period}} Semester @endif
StatusEnrolledAssessedNot Currently Assessed
Enrollment School Year SY: {{$status->advising_school_year}} - {{$status->advising_school_year + 1}}@if($status->advising_period != "yearly") / {{$status->advising_period}} Semester @endif

ENROLLMENT HISTORY

@foreach($lists as $list) @if($list->status == '4') @if($status->academic_type=="Senior High School")
{{++$x}}. {{$list->level}} | SY {{$list->school_year}} - {{$list->school_year + 1}} / {{$list->period}} Semester
@else
{{++$x}}. {{$list->level}} Year | SY {{$list->school_year}} - {{$list->school_year + 1}} / {{$list->period}} Semester
@endif  SY {{$list->school_year}} - {{$list->school_year + 1}} / {{$list->period}} Semester

@else
No enrollment record
SY {{$list->school_year}} - {{$list->school_year + 1}} / {{$list->period}} Semester
@endif @endforeach
@if($status->status != 4)

UPDATE ENROLLMENT SCHOOL YEAR

{{ csrf_field() }}
 
@else

** This student is currently enrolled. Early enrollment set up cannot be processed

@endif
@stop