Manage orders and payments for this diler
| Order ID | Date | Amount | PV | Status | Items | Actions |
|---|---|---|---|---|---|---|
| #{{ $order->id }} | {{ $order->created_at->format('d/m/Y H:i') }} | ৳{{ number_format($order->total_amount, 2) }} | {{ $order->total_pv }} PV | {{ $order->status }} |
@foreach($order->items as $item)
{{ $item->product->name }} x{{ $item->quantity }} @endforeach |
@if($order->status == 'pending_payment')
|
This diler hasn't placed any orders yet.