@extends('admin.layout.app') @section('body')
{{ __('admin.view_which_students_have_been_promoted_to_the_next_seme') }}
@if($results->isNotEmpty())| {{ __('admin.student_2') }} | {{ __('admin.email') }} | {{ __('admin.gpa') }} | {{ __('admin.semester_result') }} | {{ __('admin.promotion_status') }} |
|---|---|---|---|---|
| {{ $r->student->name }} (ID: {{ $r->student->id }}) | {{ $r->student->email }} | {{ $r->gpa }} | {{ ucfirst($r->status) }} | @if($r->promotion_status == 'Promoted') {{ __('admin.promoted') }} @elseif($r->promotion_status == 'Passed but Not Promoted') {{ __('admin.passed_but_not_promoted') }} @else {{ __('admin.failed') }} @endif |