{{ __('menu.sales.pharmacy-pickup') }}

{{ $order->machine?->name }}@if($order->machine?->location) ยท {{ $order->machine->location }}@endif
{{ __('Order No.') }}{{ $order->order_no }}
@if($order->pricing_slip_no)
{{ __('Pricing Slip No.') }}{{ $order->pricing_slip_no }}
@endif
{{ __('Created') }}{{ $order->created_at?->format('Y-m-d H:i') }}
@if($order->pickupCode?->expires_at)
{{ __('Valid Until') }}{{ $order->pickupCode->expires_at->format('Y-m-d H:i') }}
@endif @foreach($order->items as $it) @endforeach
{{ __('Medicine') }}{{ __('Quantity') }}
{{ $it->product_name }}{{ $it->quantity }}
{{ __('Pickup Code') }}
{{ $order->pickupCode?->code ?? '--------' }}
@if($qrSvg)
{!! $qrSvg !!}
@endif
{{ __('Scan the QR code or enter the pickup code at the machine to collect your medicine.') }}