@extends('admin.layout.pages-layout') @section('pageTitle', isset($pageTitle) ? $pageTitle : 'Dashboard | ' . env('APP_NAME')) @section('content')

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
{{ \App\Models\Category::count() }} Categories
{{ \App\Models\Resources::count() }} Resources
{{ \App\Models\ContactForm::count() }} Contact Form Enquiries
{{ DB::table('profile_form')->count() }} Profile Form Enquiries
@endsection @push('scripts') @endpush