Order # {{ $order->order_number }}
Date {{ $order->order_date->format('d M Y') }}
Customer {{ $order->customer->full_name }}
Branch {{ $order->branch->name }}
Status {{ $statusService->getStatusLabel($order->status) }}
Priority {{ config('order.priorities.'.$order->priority, $order->priority) }}
| Item | Qty | Unit Price | Total |
|---|---|---|---|
| {{ $item->display_name }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->line_total, 2) }} |
Design / Instructions
{{ $order->design_instructions ?? '—' }}
Stitching notes
{{ $order->stitching_notes ?? '—' }}
Printed on {{ now()->format('d M Y H:i') }}