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