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

Overview

Active schools

29

home

Active Alumni

45

supervisor_account

Active students

1,300

account_circle

Recent Students

@forelse($students as $student) @empty

No Students yet

@endforelse
Student name Contact Email Phone Number Date Added
{{$student->getFullName()}} {{$student->email}} {{$student->phone}} {{$student->created_at->format('d/m/y')}}
View all schools

Recent Alumnus

@if(empty($alumnus)) @endif @forelse($alumnus as $alumni) @empty

No Alumni yet

@endforelse
Student name Contact Email Academic Year Mentor
{{$alumni->getFullName()}} {{$alumni->email}} 2020 - 2021 No
@empty($alumnus) View all alumnus @endempty
close
Close

Add New School

@endsection