@include('admin.pages.reports.print.header') @forelse($data as $record) @empty @endforelse
{{ __('Student Name') }} {{ __('Total') }} {{ __('Value') }}
{{ $record['student']['name'] }} {{ $record['total_grade'] }} @if ($record['total_grade'] == 0) {{ __('the student did not attend the exam') }} @else {{ $record['grade_name'] }} @endif
{{ __('No records found') }}
@include('admin.pages.reports.print.footer')