Complete Order Management System
| # | Product Name | Quantity | Unit Price | Total Price | Status |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $item->product->name ?? 'Product Not Found' }}
@if ($item->product->sku ?? false)
SKU: {{ $item->product->sku }}
@endif
|
{{ $item->qty }} | Rp {{ number_format($item->final_price, 0, ',', '.') }} | Rp {{ number_format($item->item_total, 0, ',', '.') }} | Ready |
Thank you for your business!
Generated on {{ \Carbon\Carbon::now()->format('d M Y, H:i:s') }}