{{ $order->order_date }}
{{ $order->customer->name }}
{{ $order->customer->phone }}
{{ $order->customer->email }}
{{ $order->customer->address }}
Name Store
(+62) 123 123 123
email@example.com
Cirebon, Jawa Barat, Indonesia
| Item | Price | Quantity | Subtotal |
|---|---|---|---|
| {{ $item->product->name }} | {{ Number::currency($item->unitcost, 'EUR') }} | {{ $item->quantity }} | {{ Number::currency($item->total, 'EUR') }} |
| Subtotal | {{ Number::currency($order->sub_total, 'EUR') }} | ||
| Tax | {{ Number::currency($order->vat, 'EUR') }} | ||
| Total | {{ Number::currency($order->total, 'EUR') }} | ||