@extends('admin.app') @section('title', 'Dashboard') @section('content')

Admin Dashboard

Projects

{{ \App\Models\Project::count() }}

Blogs

{{ \App\Models\Blog::count() }}

Blog Category

{{ \App\Models\BlogCategory::count() }}

Gallery Categories

{{ \App\Models\GalleryCategory::count() }}

Gallery Images

{{ \App\Models\Gallery::whereNull('youtube_url')->count() }}

Gallery Videos

{{ \App\Models\Gallery::whereNotNull('youtube_url')->count() }}

Total Locations

{{ \App\Models\Location::count() }}

Job Positions

{{ \App\Models\JobPosition::count() }}

Admin
@forelse(\App\Models\Admin::latest()->take(5)->get() as $index => $admin) @empty @endforelse
# Name Email Time
{{ $index + 1 }} {{ $admin->name }} {{ $admin->email }} {{ $admin->created_at ? $admin->created_at->format('d-m-Y H:i') : '-' }}
No admin users found
@endsection @push('scripts') @endpush