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
No question data available for this student.
@endif