{{ __('Dashboard') }}

@if (auth()->user()->account_type === 'student') @dd('YOU DO NOT HAVE ACCESS TO THIS PAGE') @endif
@if ($currentSession)
@if (session('success')) @endif @if (session('error')) @endif

Department Students

@foreach ($students as $student) @endforeach
# Matric Number Name Department Actions
{{ $loop->iteration }} {{ $student->matric_number }} {{ $student->name }} {{ $student->department }}
@if($student->acceptance_letter_uploaded != "Completed") Update Acceptance Status @else @endif
{{-- Pagination --}}
@else

No data available yet!

@endif