{{ $order->order_number }}
{{ $order->order_date->format('d M Y') }}
{{ $order->customer->name }}
{{ $order->warehouse->name }}
{{ $order->salesUser->name ?? '-' }}
{{ $order->notes }}
| Product | Price | Quantity | Discount | Subtotal |
|---|---|---|---|---|
|
{{ $item->product->name }}
{{ $item->product->sku }}
|
Rp {{ number_format($item->price) }} | {{ number_format($item->quantity) }} | Rp {{ number_format($item->discount) }} | Rp {{ number_format($item->subtotal) }} |
{{ $order->invoice->invoice_number }}
{{ $order->invoice->invoice_date->format('d M Y') }}
{{ $order->invoice->due_date->format('d M Y') }}
| Date | Method | Reference | Amount |
|---|---|---|---|
| {{ $payment->payment_date->format('d M Y') }} | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} | {{ $payment->reference_number ?? '-' }} | Rp {{ number_format($payment->amount) }} |
Order Created
{{ $order->created_at->format('d M Y H:i') }}
Last Updated
{{ $order->updated_at->format('d M Y H:i') }}