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

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

{{ __('admin.export_pdf') }}
@if($promotions->count())
@foreach($promotions as $p) @endforeach
{{ __('admin.student_2') }}{{ __('admin.gpa') }}{{ __('admin.semester_result') }}{{ __('admin.promoted') }}
{{ $p->student->name }} ({{ $p->student->email }}) {{ $p->gpa }} {{ ucfirst($p->status) }} {{ $p->promoted }}
@endif
@endsection