@extends('dashboard.body.main') @section('container')
{{ $order->customer->email }}
{{ $order->customer->address }}
| No. | Photo | Product Name | Product Code | Quantity | Price | Total |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
|
{{ $item->product->name }} | {{ $item->product->code }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total, 2) }} |
| Subtotal | {{ number_format($order->sub_total, 2) }} | |||||
| VAT | {{ number_format($order->vat, 2) }} | |||||
| Total | {{ number_format($order->total, 2) }} | |||||