@extends('layouts.app') @section('title','Grade Attempt') @section('page-title','Assessments') @section('content')
{{ $attempt->taker_display_name }}
{{ $attempt->taker_email }}
Submitted {{ $attempt->submitted_at?->diffForHumans() }}

Test: {{ $attempt->test->title }}
Pass mark: {{ $attempt->test->pass_score }}%
Auto-scored: {{ round($attempt->percentage_score ?? 0) }}% (questions already auto-graded)
@csrf @foreach($attempt->responses->whereNotIn('is_correct',[true,false])->where('is_correct',null) as $resp)
{{ $resp->question->question_text }}
{{ $resp->text_response ?? '(no response)' }}
@endforeach
After saving, emails with the final score will be automatically sent to the test taker, all HR admins, and super admins.
Cancel
@endsection