Haleon Product Order

Order ID: #{{ $order->id }}
Pharmacy: {{ $order->pharmacy_name ?? 'N/A' }}
Email: {{ $order->email }}
Date: {{ $order->created_at->format('Y-m-d H:i:s') }}
Total Items: {{ $order->total_items }}
@foreach($items as $item) @php $details = $item->getProductDetails(); @endphp @endforeach
Product Size Barcode Brand Qty
{{ $details['name'] }} {{ $details['size'] }} {{ $details['barcode'] }} {{ $details['brand_name'] }} {{ $item->quantity }}
@if($order->notes)
Notes:
{{ $order->notes }}
@endif