Alumnis
@php
$pending_count = \App\Models\User::where('role', '=', 2)->where('blocked', '=', 2)->count();
$rejected_count = \App\Models\User::where('role', '=', 2)->where('blocked', '=', 1)->count();
$approved_count = \App\Models\User::where('role', '=', 2)->where('blocked', '=', 0)->count();
@endphp