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

{{ __('admin.semester_summary') }}: {{ $semester->name }}

{{ __('admin.export_pdf') }}
@foreach($results as $res) @endforeach
{{ __('admin.student_id') }}{{ __('admin.name') }}{{ __('admin.email') }}{{ __('admin.total_credits') }}{{ __('admin.gpa') }}{{ __('admin.status') }}{{ __('admin.actions') }}
{{ $res->student->id ?? '' }} {{ $res->student->name ?? '' }} {{ $res->student->email ?? '' }} {{ $res->total_credits }} {{ $res->gpa }} {{ ucfirst($res->status) }} Details
@endsection