{{-- Student-facing read-only "My progress" โ€” the signed-in user's own Math Atlas summary. Reuses the teacher Atlas radar + growth partials. Nothing here is actionable; practice lives in the AGS Math app. --}} @php($data = $this->getData()) @php($snapshot = $data['snapshot']) @php($agg = $snapshot['aggregate'] ?? [])
This is a read-only summary โ€” practice happens in the AGS Math app.
Maxile {{ $agg['maxile_score'] ?? $data['maxile'] ?? 0 }} ยท {{ $agg['maxile_level']['short_name'] ?? 'โ€”' }} @if (! is_null($data['kudos'])) {{ $data['kudos'] }} kudos @endif
Field mastery
@include('filament.teacher.atlas.radar', ['items' => $data['radar'], 'unit' => 'M', 'color' => '#88C808'])
@include('filament.teacher.atlas.growth', [ 'points' => $data['history']['points'] ?? [], 'current' => $data['history']['current'] ?? null, 'color' => '#88C808', 'label' => 'Maxile over time', ])