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 }}
Product
Size
Barcode
Brand
Qty
@foreach($items as $item) @php $details = $item->getProductDetails(); @endphp
{{ $details['name'] }}
{{ $details['size'] }}
{{ $details['barcode'] }}
{{ $details['brand_name'] }}
{{ $item->quantity }}
@endforeach
@if($order->notes)
Notes:
{{ $order->notes }}
@endif