| # | {{ __('SKU') }} | {{ __('Name') }} | {{ __('Qty') }} | {{ __('Price') }} | {{ __('Subtotal') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->product ? $item->product->sku : '' }} | {{ $item->name }} | {{ $item->quantity }} | {{ format_price($item->price) }} | {{ format_price($item->total) }} |
|
{{ __('Order total') }}:
|
{{ format_price($order->total()) }} | ||||