@extends('layouts.app') @section('title', 'Grading Scales') @section('breadcrumb', 'Academic › Grading Scales') @section('content')

Grading Scales

{{ $school->name }}

{{-- MCSS Default Scale (always shown for reference) --}}
MCSS Standard Grading Scale System Default Used when no custom scale is configured
@foreach($defaultScale as $band) @endforeach
RangeGradeGPARemark
{{ $band['min'] }} – {{ $band['max'] }} {{ $band['letter'] }} {{ $band['gpa'] }} {{ $band['remark'] }}
{{-- Custom Scales --}} @forelse($scales as $scale)
{{ $scale->name }} @if($scale->is_default) Default @endif
@if(!$scale->is_default)
@csrf
@csrf @method('DELETE')
@endif
@foreach(collect($scale->grades)->sortByDesc('min') as $band) @endforeach
RangeGradeGPARemark
{{ $band['min'] }} – {{ $band['max'] }} {{ $band['letter'] }} {{ $band['gpa'] }} {{ $band['remark'] }}
@empty
No custom scales defined. The MCSS standard scale above is used for all grading. Create a custom scale only if your school uses a different grade system.
@endforelse {{-- Create Scale Modal --}} @endsection @push('scripts') @endpush