Readingful Student Progress Report: {{ $student->name }}

Student: {{ $student->name }}

Username: {{ $student->username }}

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

Texts Read
{{ $data['texts_read'] ?? '--' }}
Mastery
{{ $data['mastery_percentage'] ?? '--' }}%
Weekly Progress
{{ $data['weekly_progress'] ?? '--' }}
Questions Answered
@php $qa = $data['questions_answered'] ?? ['correct' => 0, 'total' => 0]; @endphp
{{ $qa['correct'] ?? 0 }} / {{ $qa['total'] ?? 0 }}
Class Rank
@if(!empty($data['studentRank']) && !empty($data['total_students'])) {{ $data['studentRank'] }} of {{ $data['total_students'] }} @else -- @endif

Question Answer Record by Skill

@php $skills = $data['question_skill_stats'] ?? []; @endphp @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