@extends('admin.layouts.master')
@section('title', 'Dashboard')
@section('content')
@include('auth.partials.error')
Overview
Active Alumni
45
supervisor_account
Active students
1,300
account_circle
Student name |
Contact Email |
Phone Number |
Date Added |
@forelse($students as $student)
{{$student->getFullName()}} |
{{$student->email}} |
{{$student->phone}} |
{{$student->created_at->format('d/m/y')}} |
@empty
No Students yet
@endforelse
View all schools
@if(empty($alumnus))
Student name |
Contact Email |
Academic Year |
Mentor |
@endif
@forelse($alumnus as $alumni)
{{$alumni->getFullName()}} |
{{$alumni->email}} |
2020 - 2021 |
No |
@empty
No Alumni yet
@endforelse
@empty($alumnus)
View all alumnus
@endempty