@lang("Attendee.first_name")
{{$order->first_name}}
@lang("Attendee.last_name")
{{$order->last_name}}
@if($order->is_refunded)
@lang("ManageEvent.refunded_amount")
{{ $order->getRefundedAmountIncludingTax()->display() }}
@else
@lang("ManageEvent.amount")
{{ $order->getOrderAmount()->display() }}
@if ($order->is_partially_refunded)
({{ $order->getPartiallyRefundedAmount()->negate()->display() }})
@endif
@endif
@lang("Order.order_ref")
{{$order->order_reference}}
@lang("Order.date")
{{$order->created_at->format(config('attendize.default_datetime_format'))}}
@lang("Order.email")
{{$order->email}}
@if($order->transaction_id)
@lang("Order.transaction_id")
{{$order->transaction_id}}
@endif
@if($order->payment_intent)
@lang("Order.payment_intent")
{{$order->payment_intent}}
@endif
@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")
{{$order->business_address}}
@if ($order->business_address_line_one) {{$order->business_address_line_one}},@endif
@if ($order->business_address_line_one) {{$order->business_address_line_two}},@endif
@if ($order->business_address_line_one) {{$order->business_address_state_province}}
,@endif
@if ($order->business_address_line_one) {{$order->business_address_city}},@endif
@if ($order->business_address_line_one) {{$order->business_address_code}}@endif
@endif