@extends('backend.app') @section('title', 'Dashboard') {{-- @section('style') @endsection --}} @section('content')
{{-- Header --}}

Welcome back 👋

Here is your latest dashboard overview

{{-- Date Filter --}}
{{-- Top Stats --}}
{{-- Card --}}

Total Admins

{{ $admins }}

{{-- Card --}}

Total Users

{{ $users }}

{{-- Card --}}

Blocked Users

{{ $blocked ?? 0 }}

{{-- Card --}}

Today Approved

{{ $approved ?? 0 }}

{{-- Revenue --}}

Revenue Today

€{{ $todayRevenue ?? 0 }}

Revenue This Month

€{{ $monthlyRevenue ?? 0 }}

{{-- Table --}}

Recent Users

@forelse($recentUsers ?? [] as $user) @empty @endforelse
# Name Email Role Status Action
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }} {{ $user->role }} Active View
No data found
{{-- Chart --}}

User Growth

@endsection {{-- Custom Style --}} @push('styles') @endpush @push('scripts') @endpush