@extends('en.Emails.Layouts.Master') @section('message_content') Hello,

You have received a new order for the event {{$order->event->title}}.

@if(!$order->is_payment_received) Please note: This order still requires payment.

@endif

Order Summary

Order Reference: {{$order->order_reference}}
Order Name: {{$order->full_name}}
Order Date: {{$order->created_at->format(config('attendize.default_datetime_format'))}}
Order Email: {{$order->email}}
@if ($order->is_business)

Business Details

@if ($order->business_name) @lang("Public_ViewEvent.business_name"): {{$order->business_name}}
@endif @if ($order->business_tax_number) @lang("Public_ViewEvent.business_tax_number"): {{$order->business_tax_number}}
@endif @if ($order->business_address_line_one) @lang("Public_ViewEvent.business_address_line1"): {{$order->business_address_line_one}}
@endif @if ($order->business_address_line_two) @lang("Public_ViewEvent.business_address_line2"): {{$order->business_address_line_two}}
@endif @if ($order->business_address_state_province) @lang("Public_ViewEvent.business_address_state_province"): {{$order->business_address_state_province}}
@endif @if ($order->business_address_city) @lang("Public_ViewEvent.business_address_city"): {{$order->business_address_city}}
@endif @if ($order->business_address_code) @lang("Public_ViewEvent.business_address_code"): {{$order->business_address_code}}
@endif @endif

Order Items

@foreach($order->orderItems as $order_item) @endforeach @if($order->event->organiser->charge_tax == 1) @endif
Ticket Quantity Price Booking Fee Total
{{$order_item->title}} {{$order_item->quantity}} @isFree($order_item->unit_price) FREE @else {{money($order_item->unit_price, $order->event->currency)}} @endif @requiresPayment($order_item->unit_booking_fee) @isFree($order_item->unit_price) - @else {{money($order_item->unit_booking_fee, $order->event->currency)}} @endif @else - @endif @isFree($order_item->unit_price) FREE @else {{money(($order_item->unit_price + $order_item->unit_booking_fee) * ($order_item->quantity), $order->event->currency)}} @endif
Sub Total {{$orderService->getOrderTotalWithBookingFee(true)}}
{{$order->event->organiser->tax_name}}({{$order->event->organiser->tax_value}}%) {{$orderService->getTaxAmount(true)}}
Total {{$orderService->getGrandTotal(true)}}


You can manage this order at: {{route('showEventOrders', ['event_id' => $order->event->id, 'q'=>$order->order_reference])}}



Thank you @stop