{{ __('Admin Dashboard') }}

Total Merchants
{{ $totalMerchants }}
Total Orders
{{ $totalOrders }} @if(isset($orderGrowth)) @if($orderGrowth > 0) @elseif($orderGrowth < 0) @endif {{ number_format($orderGrowth, 1) }}% @endif
Total Products
{{ $totalProducts }}
Total Revenue
${{ number_format($totalRevenue, 2) }} @if(isset($revenueGrowth)) @if($revenueGrowth > 0) @elseif($revenueGrowth < 0) @endif {{ number_format($revenueGrowth, 1) }}% @endif

Revenue Overview (Last 6 Months)

Top Performing Merchants

@foreach($topMerchants as $store) @endforeach
Merchant Total Orders Total Revenue
{{ $store->merchant->business_name ?? '-' }} {{ $store->total_orders }} ${{ number_format($store->total_revenue, 2) }}
@push('scripts') @endpush