Haleon Product Order
Order Number:
{{ $order->order_number }}
Pharmacy:
{{ $order->pharmacy_name ?: 'N/A' }}
Date:
{{ $order->created_at->format('Y-m-d H:i:s') }}
Total Items:
{{ $order->total_items }}
Product
Size
Barcode
Brand
Qty
@foreach($order->orderItems as $item)
{{ $item->product->name }}
{{ $item->product->size }}
{{ $item->product->barcode }}
{{ $item->product->brand->name }}
{{ $item->quantity }}
@endforeach