{{ @trans("Public_ViewEvent.thank_you_for_your_order") }}

{{ @trans("Public_ViewEvent.your") }} {{ @trans("Public_ViewEvent.tickets") }} {{ @trans("Public_ViewEvent.confirmation_email") }}

@if($event->post_order_display_message)
{{ nl2br($event->post_order_display_message) }}
@endif
@lang("Public_ViewEvent.first_name")
{{$order->first_name}}
@lang("Public_ViewEvent.last_name")
{{$order->last_name}}
@lang("Public_ViewEvent.amount")
{{$order->event->currency_symbol}}{{number_format($order->total_amount, 2)}} @if($event->organiser->charge_tax) {{ $orderService->getVatFormattedInBrackets() }} @endif
@lang("Public_ViewEvent.reference")
{{$order->order_reference}}
@lang("Public_ViewEvent.date")
{{$order->created_at->format(config('attendize.default_datetime_format'))}}
@lang("Public_ViewEvent.email")
{{$order->email}}
@if ($order->is_business)
@lang("Public_ViewEvent.business_name")
{{$order->business_name}}
@lang("Public_ViewEvent.business_tax_number")
{{$order->business_tax_number}}
@lang("Public_ViewEvent.business_address")
@if ($order->business_address_line_one) {{$order->business_address_line_one}}, @endif @if ($order->business_address_line_two) {{$order->business_address_line_two}}, @endif @if ($order->business_address_state_province) {{$order->business_address_state_province}}, @endif @if ($order->business_address_city) {{$order->business_address_city}}, @endif @if ($order->business_address_code) {{$order->business_address_code}} @endif
@endif
@if(!$order->is_payment_received)

@lang("Public_ViewEvent.payment_instructions")

@lang("Public_ViewEvent.order_awaiting_payment")
{!! md_to_html($event->offline_payment_instructions) !!}
@endif

@lang("Public_ViewEvent.order_items")

@foreach($order->orderItems as $order_item) @endforeach @if($event->organiser->charge_tax) @endif @if($order->is_refunded || $order->is_partially_refunded) @endif
@lang("Public_ViewEvent.ticket") @lang("Public_ViewEvent.quantity_full") @lang("Public_ViewEvent.price") @lang("Public_ViewEvent.booking_fee") @lang("Public_ViewEvent.total")
{{$order_item->title}} {{$order_item->quantity}} @isFree($order_item->unit_price) @lang("Public_ViewEvent.free") @else {{money($order_item->unit_price, $order->event->currency)}} @endif @requiresPayment($order_item->unit_booking_fee) @requiresPayment($order_item->unit_price) {{money($order_item->unit_booking_fee, $order->event->currency)}} @else - @endif @else - @endif @isFree($order_item->unit_price) @lang("Public_ViewEvent.free") @else {{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}} @endif
@lang("Public_ViewEvent.sub_total") {{ $orderService->getOrderTotalWithBookingFee(true) }}
{{$event->organiser->tax_name}}({{$order->event->organiser->tax_value}}%) {{ $orderService->getTaxAmount(true) }}
Total {{ $orderService->getGrandTotal(true) }}
@lang("Public_ViewEvent.refunded_amount") {{money($order->amount_refunded, $order->event->currency)}}
@lang("Public_ViewEvent.total") {{money($order->total_amount - $order->amount_refunded, $order->event->currency)}}

@lang("Public_ViewEvent.order_attendees")

@foreach($order->attendees as $attendee) @endforeach
{{$attendee->first_name}} {{$attendee->last_name}} ({{$attendee->email}}) {{{$attendee->ticket->title}}} @if($attendee->is_cancelled) @lang("Public_ViewEvent.attendee_cancelled") @endif