Admin Dashboard

Total Users

{{ $stats['total_users'] ?? 0 }}

Total Merchants

{{ $stats['total_merchants'] ?? 0 }}

Total Orders

{{ $stats['total_orders'] ?? 0 }}

Pending Payments

{{ $stats['pending_payments'] ?? 0 }}

Active Subscriptions

{{ $stats['active_subscriptions'] ?? 0 }}

@if(($stats['expiring_soon'] ?? 0) > 0)

Expiring Soon (7 days)

{{ $stats['expiring_soon'] }}

@endif

Pending Merchants

View All
@forelse($pendingMerchants ?? [] as $merchant) @empty @endforelse
Business Action

{{ $merchant->business_name }}

{{ $merchant->user->name }}

Review
No pending merchants.

Pending Payments

View All
@forelse($pendingPayments ?? [] as $payment) @empty @endforelse
Amount User Action
{{ format_price($payment->amount) }} {{ $payment->user->name ?? 'N/A' }} Review
No pending payments.

Recent Orders

View All
@forelse($recentOrders ?? [] as $order) @empty @endforelse
Order # Customer Total Status Date
{{ $order->order_number }} {{ $order->customer->name ?? 'N/A' }} {{ format_price($order->total_amount) }} {{ $order->created_at->format('M d, Y') }}
No orders yet.