@extends('layouts.admin') @section('title', 'Test • '.$test->id.' • '.($user->name ?? $user->email)) @section('content')
| QID | Question | Skill | Tracks (Field) | Answered | Correct | Attempts | Kudos | Answered At |
|---|---|---|---|---|---|---|---|---|
| {{ $q->id }} | {{ \Illuminate\Support\Str::limit(strip_tags($q->question ?? ''), 140) }} | {!! $skillCell !!} | {!! $tracksCell !!} | @if($q->pivot->question_answered) Yes @else No @endif | @if($q->pivot->correct) ✓ @else ✗ @endif | {{ (int) $q->pivot->attempts }} | {{ (int) $q->pivot->kudos }} | {{ $dateFmt($q->pivot->answered_date ?? null) }} |
| No question attempts found for this test. | ||||||||
question_user where user_id={{ $user->id }} and test_id={{ $test->id }}.