{{-- FLASH MESSAGES --}} @if(session('success'))
{{ session('success') }}
@endif {{-- HEADER & FILTERS CONTROL PANEL --}}
{{-- Top Header Section --}}
{{-- Child Avatar/Icon --}}

{{ $student?->full_name ?? __('Student Gradebook') }}

{{ __('Viewing academic performance & continuous assessments') }}

{{-- Quick Stats / Trend --}} @if(isset($trend['direction']))
{{ __('Performance Trend:') }} @if($trend['direction'] === 'up') {{ __('Improving') }} @elseif($trend['direction'] === 'down') {{ __('Needs Attention') }} @else {{ __('Stable') }} @endif
@endif
{{-- Filter Bar Section --}}
{{-- 1. CHILD SELECTOR (Key for Parents) --}}
{{-- 2. Academic Year --}}
{{-- 3. Term --}}
{{-- 4. Report Actions (Placeholder for Print/Download) --}}
{{-- GRADEBOOK CONTENT --}} @if(!empty($gradebookData) && isset($gradebookData['subjects']) && count($gradebookData['subjects']) > 0)
{{-- Summary Cards --}}
{{ __('Overall Average') }}
{{ $gradebookData['overall_average'] ?? '--' }}%
{{ __('Class Rank') }}
#{{ $gradebookData['class_rank'] ?? '--' }}
{{ __('GPA') }}
{{ $gradebookData['gpa'] ?? '--' }}
{{-- Subjects Table --}}

{{ __('Subject Breakdown') }}

@foreach($gradebookData['subjects'] as $subjectData) @endforeach
{{ __('Subject') }} {{ __('CA1') }} {{ __('CA2') }} {{ __('Exam') }} {{ __('Total') }} {{ __('Grade') }} {{ __('Remarks') }}
{{ $subjectData['subject_name'] ?? '--' }} {{ $subjectData['ca1'] ?? '--' }} {{ $subjectData['ca2'] ?? '--' }} {{ $subjectData['exam'] ?? '--' }} {{ $subjectData['total'] ?? '--' }} {{ $subjectData['grade'] ?? '--' }} {{ $subjectData['remarks'] ?? '--' }}
{{-- Signature/Acknowledgment Section (if applicable) --}} @if(isset($gradebookData['snapshot_id']))

{{ __('Parent Acknowledgment') }}

@csrf
@endif
@else
@endif