{{-- OPS Breakdown --}}

{{ __('OPS Score Breakdown') }}

{{-- OPS Ring --}}

{{ $ops_score ?? 0 }}%

{{ __('Overall OPS') }}

{{ __('Class Rank') }}: #{{ $class_rank ?? 0 }} of {{ $total_students ?? 0 }}

{{-- Component Breakdown --}}

{{ __('Why is my score this?') }}

@foreach(($components ?? []) as $component)
{{ $component['label'] ?? '' }} ({{ $component['weight'] ?? 0 }}%) {{ $component['score'] ?? 0 }}% → {{ $component['contribution'] ?? 0 }} pts
@endforeach
{{-- Subject Performance --}}

{{ __('Subject Performance') }}

@forelse(($subjects ?? []) as $subject)
{{ $subject['icon'] ?? '📚' }}

{{ $subject['name'] ?? '' }}

{{ $subject['score'] ?? 0 }}%
{{ __('Last grade') }}: {{ $subject['last_grade'] ?? '—' }} {{ ($subject['trend'] ?? 0) >= 0 ? '↑' : '↓' }} {{ abs($subject['trend'] ?? 0) }}%
@empty
@endforelse
{{-- OPS Trend Chart --}}

{{ __('OPS Trend') }}