@extends('layouts.master') @section('page_title', 'Manage Grades') @section('content')
Manage Grades
{!! Qs::getPanelOptions() !!}
@foreach($grades as $gr) @endforeach
S/N Name Grade Type Range Remark Action
{{ $loop->iteration }} {{ $gr->name }} {{ $gr->class_type_id ? $class_types->where('id', $gr->class_type_id)->first()->name : ''}} {{ $gr->mark_from.' - '.$gr->mark_to }} {{ $gr->remark }}
If The grade you are creating applies to all class types select NOT APPLICABLE. Otherwise select the Class Type That the grade applies to
@csrf
{{--Class List Ends--}} @endsection