Results and grading

@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @can('results.upload')

Open a course result batch

@csrf
@endcan @can('results.publish')
Create grading system
@csrf

Define bands from lowest to highest. Add more bands by editing the submitted fields or use the seeded five-point system.

@foreach([['0','39','F','0','0'],['40','44','E','1','1'],['45','49','D','2','1'],['50','59','C','3','1'],['60','69','B','4','1'],['70','100','A','5','1']] as $i => $band)
@endforeach
@endcan
@forelse($batches as $batch) @empty@endforelse
CoursePeriodStatusRecords
{{ $batch->offering->course->code }} — {{ $batch->offering->course->title }}{{ $batch->offering->academicSession->name }} / {{ $batch->offering->semester->name }}{{ str_replace('_',' ',ucfirst($batch->status)) }}{{ $batch->results()->count() }}Manage
No result batches yet.
{{ $batches->links() }}