@extends('admin.layout') @section('title', 'Quiz Session #' . $session->id) @section('content') ← Back
Player
{{ $session->user->battle_name ?? '—' }}
Category
{{ $session->category->label ?? '—' }}
Mode
{{ $session->mode }}
Status
{{ ucfirst($session->status) }}
Score
{{ $session->correct_answers }}/{{ $session->total_questions }}
Grade
{{ $session->grade ?: '—' }}
XP Earned
+{{ $session->xp_earned }}
Coins Earned
+{{ $session->coins_earned }}

Answers

@foreach ($session->answers as $i => $answer)
Q{{ $i + 1 }}: {{ $answer->question->question }}
@if ($answer->was_skipped) Skipped @elseif ($answer->is_correct) ✓ Correct @else ✗ Wrong @endif
Selected: {{ $answer->selected_index !== null ? ($answer->question->options[$answer->selected_index] ?? '—') : '—' }} · Correct: {{ $answer->question->options[$answer->question->correct_index] ?? '—' }} · Time: {{ $answer->time_taken_seconds }}s
@endforeach
@csrf @method('DELETE')
@endsection