@extends('layouts.deanapp')
@section('content')
Petitioned Subject
{{$offered->ctr_code}} - {{$offered->course_name}} - {{$offered->lab + $offered->lec}} units
Lec {{$offered->lec}} units / Lab @if($offered->lab == null) 0 @else {{$offered->lab}} @endif units
{{$offered->program_code}} - {{$offered->level}} Year
Remove from Petition Unoffer
**Note: Unoffering will cause all subject related records to be removed.
ENROLLED STUDENTS
SY: {{$offered->school_year}} - {{$offered->school_year + 1}} / {{$offered->period}} Semester
@if(count($lists)>0)
Student No. |
Student Name |
Remove |
@foreach($lists as $list)
{{$list->idno}} |
{{$list->lastname}}, {{$list->firstname}} |
@if($list->status == 4)
Already Enrolled |
@else
Remove |
@endif
@endforeach
@else
Nothing to display. |
@endif
@stop