@extends('layouts.app') @section('content')
{{ $order->uuid }}
Status
{{ str_replace('_', ' ', $order->status) }}
Order Type
{{ $order->is_custom_order ? 'Custom' : 'Standard' }}
Customer
{{ $order->user->name ?? 'N/A' }}
Created
{{ $order->created_at->format('M d, Y') }}
Scan to access this order:
No actions available for this order status.
| Product | Type | Quantity | Amount |
|---|---|---|---|
| {{ $item->product->name ?? 'N/A' }} | {{ $item->product_type ?? 'N/A' }} | {{ $item->quantity }} | R{{ number_format($item->unit_price * $item->quantity, 2) }} |
| No items | |||
Width
{{ $order->packing_width }} cm
Length
{{ $order->packing_length }} cm
Weight
{{ $order->packing_weight }} kg
Packed At
{{ $order->packing_completed_at ? $order->packing_completed_at->format('M d, H:i') : 'Not packed' }}
Waybill ID
{{ $order->courier_waybill_id }}
Tracking Number
{{ $order->courier_tracking_number ?? 'N/A' }}
Status
{{ str_replace('_', ' ', $order->courier_status ?? 'pending') }}