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

GRADE MANAGEMENT

Open/Close Grades

** Closing/Closing and Locking of grades might take a while.  
{{ csrf_field() }}
 
@foreach($bed as $grade) @endforeach
- Quarter Status Date Updated
Junior High School {{$grade->term}} @if($grade->is_open == 1)Open@else : Close@endif @if($grade->updated_at != null){{date_format(date_create($grade->updated_at),"F d, Y")}}@endif

Open/Close Grades

** Closing/Closing and Locking of grades might take a while.  
{{ csrf_field() }}
 
@foreach($shs as $grade) @endforeach
- Quarter Status Date Updated
Senior High School {{$grade->term}} @if($grade->is_open == 1)Open@else : Close@endif @if($grade->updated_at != null){{date_format(date_create($grade->updated_at),"F d, Y")}}@endif

Open/Close Grades

** Closing/Closing and Locking of grades might take a while.  
{{ csrf_field() }}
 
@foreach($college as $grade) @endforeach
- Term Status Date Updated
College {{$grade->term}} @if($grade->is_open == 1)Open@else : Close@endif @if($grade->updated_at != null){{date_format(date_create($grade->updated_at),"F d, Y")}}@endif
@stop