|
#{{ $orderNumber }} / {{ $orderDate }}
{{ $invNumber }}
|
| Payment | {{ $paymentStatus }} | Fulfillment | {{ $status }} |
|
Order Info
Order: {{ $orderDate }}
PO#: {{ $orderUid }} {{ $channel }} / {{ $currency }} |
Ship To
{{ $shippingName }}
@if($shippingAddress)
{{ $shippingAddress }}
@endif
@if($customerPhone)
{{ $customerPhone }}
@endif
|
Bill To
{{ $customerName }}
@if($customerEmail)
{{ $customerEmail }}
@endif
|
| Item | Price | Qty | Amount |
| 📦 {{ $item->product?->name ?? 'Product #' . $item->product_id }} @if($item->variant) SKU: {{ $item->variant->sku ?? 'N/A' }} @endif | {{ $currency }} {{ number_format((float) $item->unit_price, 2) }} | {{ $item->quantity }} | {{ $currency }} {{ number_format((float) $item->line_total, 2) }} |
| Subtotal | {{ $currency }} {{ $subtotal }} |
| Discount | -{{ $currency }} {{ $discountAmount }} |
| Shipping | {{ $currency }} {{ $shippingAmount }} |
| Tax | {{ $currency }} {{ $taxAmount }} |
| Paid | {{ $currency }} {{ $paidAmount }} |
| Total due | {{ $currency }} {{ $dueAmount }} |