@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
@include('auth.partials.error')

Alumni

@forelse($alumni as $alumnus) @empty

No Alumni Yet

@endforelse
Student Name Contact Email Phone Number Academic Year Mentor
{{$alumnus->getFullName()}} {{$alumnus->email}} {{$alumnus->phone}} {{$alumnus->profile_answers["academic_year"]["from"] ?? "None"}} - {{$alumnus->profile_answers["academic_year"]["to"] ?? "None"}} {{$alumnus->role_id == $roles[Guildroom\Enums\UserRoles::MENTOR] ? "Yes" : "No"}}
@empty(!$alumni) @if($alumni->previousPageUrl()) @endif @if($alumni->nextPageUrl()) @endif @endempty
close
Close

Add New Alumni

@csrf
@endsection @section("scripts") {!! JsValidator::formRequest('Guildroom\Http\Requests\Admin\AddStudentRequest', '#new-student-form') !!} @endsection