Dashboard

Welcome back, {{ auth()->user()->name }}!
Total Users
{{ $stats['total_users'] }}
Total Orders
{{ $stats['total_orders'] }}
Total Products
{{ $stats['total_products'] }}
Total Commissions
R{{ number_format($stats['total_commissions'], 2) }}

Recent Users

View All
@foreach($stats['recent_users'] as $user)
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
{{ $user->created_at->diffForHumans() }}
@endforeach

Recent Orders

View All
@foreach($stats['recent_orders'] as $order)
Order #{{ $order->id }}
{{ $order->user->name }}
R{{ number_format($order->total_amount, 2) }}
{{ $order->created_at->diffForHumans() }}
@endforeach

Low Stock Products

View All Products
@foreach($stats['low_stock_products'] as $product)
{{ $product->name }}
SKU: {{ $product->sku }}
Stock: {{ $product->stock }}
{{ $product->stock < 5 ? 'Critical Low' : 'Low Stock' }}
@endforeach