@if ($rows->isEmpty())

No marks recorded for this student.

@else {{-- Marks Table --}}
@foreach ($rows as $row) {{-- Subject --}} {{-- Marks --}} {{-- Grade --}} {{-- Best Marks --}} {{-- Best Student --}} @endforeach
Subject Marks Grade Best Best Student
{{ $row['subject_name'] }} @if ($row['contribution']) @php $c = $row['contribution']; @endphp নিজের: {{ $c['own_marks'] }}/{{ $c['own_total'] }} + {{ $c['source_name'] }} ({{ $c['source_percent'] }}%): {{ $c['contributed_marks'] }} @if ($c['breakdown']) (সেরা: {{ $c['breakdown'] }}) @endif @endif @if ($row['is_absent']) Absent @else {{ $row['total_marks'] }} @endif @if ($row['grade_label']) @php $gc = $row['grade_color']; @endphp {{ $row['grade_label'] }} @else @endif {{ $row['best_marks'] ?? '—' }} @if ($row['best_students']) {{ $row['best_students'] }} @else @endif
{{-- Summary Footer --}}
Total: {{ $summary['total_marks'] }} | Class Rank: #{{ $summary['class_rank'] }} @if ($summary['section_rank']) | Section Rank: #{{ $summary['section_rank'] }} @endif
@php $oc = $summary['overall_grade_color']; @endphp GPA {{ $summary['gpa'] }} — {{ $summary['overall_grade_label'] }}
@endif