Thank you for your order!

Your tickets and a confirmation email have been sent to you.

@if($event->post_order_display_message)
{{ nl2br(e($event->post_order_display_message)) }}
@endif
First Name
{{$order->first_name}}
Last Name
{{$order->last_name}}
Amount
{{$order->event->currency_symbol}}{{number_format($order->total_amount,2)}}
Reference
{{$order->order_reference}}
Date
{{$order->created_at->toDateTimeString()}}
Email
{{$order->email}}

Order Items

@foreach($order->orderItems as $order_item) @endforeach @if($order->is_refunded || $order->is_partially_refunded) @endif
Ticket Quantity Price Booking Fee Total
{{$order_item->title}} {{$order_item->quantity}} @if((int)ceil($order_item->unit_price) == 0) FREE @else {{money($order_item->unit_price, $order->event->currency->code)}} @endif @if((int)ceil($order_item->unit_price) == 0) - @else {{money($order_item->unit_booking_fee, $order->event->currency->code)}} @endif @if((int)ceil($order_item->unit_price) == 0) FREE @else {{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency->code)}} @endif
Sub Total {{money($order->total_amount, $order->event->currency->code)}}
Refunded Amount {{money($order->amount_refunded, $order->event->currency->code)}}
Total {{money($order->total_amount - $order->amount_refunded, $order->event->currency->code)}}

Order Attendees

@foreach($order->attendees as $attendee) @endforeach
{{$attendee->first_name}} {{$attendee->last_name}} ({{$attendee->email}}) {{{$attendee->ticket->title}}} @if($attendee->is_cancelled) Cancelled @endif