@extends('admin.layout.app') @section('body')

{{ __('admin.semester_results_report') }}

{{ __('admin.export_pdf') }}
@foreach($results as $res) @endforeach
{{ __('admin.student_2') }}{{ __('admin.total_credits') }}{{ __('admin.total_grade_points') }}{{ __('admin.gpa') }}{{ __('admin.status') }}{{ __('admin.result_date') }}
{{ $res->student->name ?? '' }} ({{ $res->student->email ?? '' }}) {{ $res->total_credits }} {{ $res->total_grade_points }} {{ $res->gpa }} {{ ucfirst($res->status) }} {{ $res->result_date }}
{{-- {{ $results->links('pagination::bootstrap-4') }} --}}
@endsection