@include('admin.pages.reports.print.header') @if(isset($student))

{{ __('Student') }}: {{ $student->name ?? '-' }} ({{ $student->code ?? '-' }})

@endif @forelse($data as $record) @empty @endforelse
{{ __('Exam Name') }} {{ __('Date') }} {{ __('Teacher') }} {{ __('Subject') }} {{ __('Grade') }} {{ __('Value') }}
{{ $record->exam_grade?->exam_enrollment?->name ?? '-' }} {{ $record->exam_date ? \Carbon\Carbon::parse($record->exam_date)->format('Y-m-d') : '-' }} {{ $record->exam_grade?->exam_enrollment?->teacher?->name ?? '-' }} {{ $record->exam_grade?->exam_enrollment?->subject?->name ?? '-' }} {{ $record->grade_value ?? '-' }} {{ $record->grade_name ?? '-' }}
{{ __('No Grades Found') }}
@include('admin.pages.reports.print.footer')