Welcome back, {{ $supplier->contact_person }}!

Manage your products, orders, and business operations from here.

Verified Supplier
{{ $stats['total_products'] }}
Total Products
{{ $stats['active_products'] }}
Active Products
{{ $stats['total_orders'] }}
Total Orders
₹{{ number_format($stats['total_revenue'], 0) }}
Total Revenue

Recent Orders

@if($recentOrders->count() > 0) @foreach($recentOrders as $order)
Order #{{ $order->id }}
{{ $order->buyer->business_name ?? 'N/A' }}
₹{{ number_format($order->total_amount, 2) }}
@endforeach @else

No recent orders

Orders from buyers will appear here
@endif

Your Products

@if($topProducts->count() > 0) @foreach($topProducts as $product)
{{ $product->product_name }}
{{ $product->product_code }}
₹{{ number_format($product->price_per_unit, 2) }} per {{ $product->unit }}
@endforeach @else

No products found

Add your first product to get started
@endif

Quick Actions