@extends('layouts.admin') @section('title', 'Dashboard') @push('styles') @endpush @section('content') {{-- Top Stats Row --}}

Total Users

{{ number_format($totalUsers ?? 0) }}
{{ $newUsersPercent ?? '0' }}% this month

Total Revenue

₦{{ number_format($totalRevenue ?? 0, 2) }}
{{ $revenueGrowth ?? '0' }}% this month

Active Escrows

{{ number_format($activeEscrows ?? 0) }}
{{ $escrowGrowth ?? '0' }}% this month

Inventory Tenants

{{ number_format($totalTenants ?? 0) }}
{{ $tenantGrowth ?? '0' }}% this month
{{-- Second Stats Row --}}

Marketplace Listings

{{ number_format($totalListings ?? 0) }}

Pending Disputes

{{ number_format($pendingDisputes ?? 0) }}

Pending Verifications

{{ number_format($pendingVerifications ?? 0) }}

Active Subscriptions

{{ number_format($activeSubscriptions ?? 0) }}
{{-- Revenue Chart --}}

Monthly Revenue Trend

Last 12 months
@if(collect($revenueChartData ?? [])->sum() > 0)
@else
No revenue recorded yet for the last 12 months.
@endif
{{-- Activity Feed + Quick Links --}}

Recent Activity

View All

Quick Links

@endsection @push('scripts') @if(collect($revenueChartData ?? [])->sum() > 0) @endif @endpush