@extends('layouts.master') @section('title') {{ __('manage'). ' ' . __('grade')}} @endsection @section('content')

{{ __('create') . ' ' . __('grade')}}

{{-- Template for New Grade --}} {{--End Template for New Grade --}}
@for ($i = 0; $i < count($grades); $i++)
@if(isset($grades[$i-1])) @php $min = $grades[$i-1]['ending_range']; $min = $min+1; @endphp @else @endif
@if(isset($grades[$i+1])) @php $max = $grades[$i+1]['starting_range']; $max = $max-1; @endphp @else @endif
@endfor
@endsection