Readingful Student Question Answer Report: {{ $student->name }}

Student: {{ $student->name }}

Username: {{ $student->username }}

Generated on: {{ $generatedAt->format('F j, Y g:i A') }}

@php $qa = $data['questions_answered'] ?? ['correct' => 0, 'total' => 0]; $totalQuestions = $qa['total'] ?? 0; $correctQuestions = $qa['correct'] ?? 0; $skills = $data['question_skill_stats'] ?? []; @endphp
Total Questions Answered
{{ $totalQuestions }}
Correct Answers
{{ $correctQuestions }}

Question Answer Record by Skill

@if(count($skills) > 0) @foreach($skills as $skill) @endforeach
Skill Correct / Total Percentage
{{ $skill['skill'] }} {{ $skill['correct'] }} / {{ $skill['total'] }} {{ $skill['percentage'] }}%
@else

No question data available for this student.

@endif