@extends('teacher.layout') @section('title', 'Gradebook') @section('content') @php $tab = 'grades'; @endphp @include('teacher.partials.workspace_tabs')
| Student | @foreach ($columns as $col){{ $col['kind'] }} {{ \Illuminate\Support\Str::limit($col['label'], 16) }} /{{ rtrim(rtrim(number_format($col['max'],1),'0'),'.') }} | @endforeachTotal |
|---|---|---|
| {{ $s->fullName() }} | @foreach ($columns as $col) @php $v = $row[$col['key']] ?? null; @endphp{{ $v === null ? '—' : rtrim(rtrim(number_format((float)$v,2),'0'),'.') }} | @endforeach{{ rtrim(rtrim(number_format($earned,2),'0'),'.') }} {{ $pct }}% |
Total possible: {{ rtrim(rtrim(number_format($totalMax,2),'0'),'.') }} points across {{ $columns->count() }} activit{{ $columns->count() === 1 ? 'y' : 'ies' }}.
@endif @endsection