@extends('layouts.app') @section('title', 'Assess – ' . $student->name) @section('content') @php $profile = $student->studentProfile; @endphp {{ $student->name }} {{-- ── Who / what ─────────────────────────────────────────────────────── --}}
@if($profile?->photo_path) @else {{ strtoupper(mb_substr($student->name, 0, 1)) }} @endif
{{ $student->name }}
{{ $profile?->student_id ?: '—' }} · {{ $semester->name }}
Current progress
{{ $progress['passed'] }}/{{ $progress['total'] }} ({{ $progress['percent'] }}%)
{{-- ── Score guide ────────────────────────────────────────────────────── --}}
Score guide: @foreach(array_reverse(config('assessment.score_labels'), true) as $value => $label) {{ $value }} {{ $label }} @endforeach NA Not applicable Pass mark is {{ config('assessment.pass_score') }}.
{{-- ── Toolbar ────────────────────────────────────────────────────────── --}}
@csrf @if($compulsoryRoots->isNotEmpty())
Compulsory Procedures
@php $rootNum = 0; @endphp @foreach($compulsoryRoots as $root) @php $rootNum++; @endphp @include('ci._assess-group', ['root' => $root, 'rootNum' => $rootNum, 'allowNA' => false, 'latestMap' => $latestMap]) @endforeach
@endif @if($optionalRoots->isNotEmpty())
Optional Procedures
@php $rootNum = 0; @endphp @foreach($optionalRoots as $root) @php $rootNum++; @endphp @include('ci._assess-group', ['root' => $root, 'rootNum' => $rootNum, 'allowNA' => true, 'latestMap' => $latestMap]) @endforeach
@endif
No procedures match your search.
{{-- Sticky save bar --}}
0 scored · dated {{ now()->format('d M Y') }}
@push('scripts') @endpush @endsection