@extends('layouts.app') @section('content')

Admin Dashboard

Welcome back, {{ auth()->user()->name }}

@csrf

Total Affiliates

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

Total Merchants

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

Pending Affiliates

{{ \App\Models\Affiliate::where('status', 'pending')->count() }}

Pending Merchants

{{ \App\Models\Merchant::where('status', 'pending')->count() }}

System Overview

Active Affiliates

Approved and active accounts

{{ \App\Models\Affiliate::where('status', 'active')->count() }}

Active Merchants

Approved and active stores

{{ \App\Models\Merchant::where('status', 'active')->count() }}

Commission Tiers

Available commission structures

{{ \App\Models\CommissionTier::where('is_active', true)->count() }}
@endsection