Date: {{ $order->created_at->format('Y-m-d H:i') }}
Status: {{ ucfirst($order->status) }}
|
|
| # | Item | Qty | Unit (GBP) | Line Total |
|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->title ?? $item->name ?? 'Item' }}
@if(!empty($item->sku)) SKU: {{ $item->sku }}@endif @if(!empty($item->notes)) {{ $item->notes }}@endif |
{{ $qty }} | {{ number_format($unit, 2) }} | {{ number_format($line, 2) }} |