Logo
{{ $order->order_number }}
{{ $order->user->name }}
@if($order->user->phone)
{{ $order->user->phone }}
@endif @if($order->user->email)
{{ $order->user->email }}
@endif
{{ $order->pickup_point?->name }}
Card
{{ $order->flight_number }}
Jun 11 03:15
@if(count( $order->order_items) > 0) @foreach($order->order_items as $item) @endforeach @if(count( $order->order_addons) > 0) @foreach($order->order_addons as $addon) @endforeach @endif
Item Qty Unit Price Price
{{ $item->product->name }} {{ $item->item_count }} {{ $item->price }} {{ $item->sub_total }}
Addons
{{ $addon->addon->name }} {{ $addon->item_count }} {{ $addon->price }} {{ $addon->sub_total }}
Total(Incl VAT) AED {{ $order->grant_total }}
@endif @if($order->qr_code)
@endif