@extends('en.Emails.Layouts.Master')
@section('message_content')
Hello,
Your order for the event {{$order->event->title}} was successful.
Your tickets are attached to this email. You can also view you order details and download your tickets
at: {{route('showOrderDetails', ['order_reference' => $order->order_reference])}}
@if(!$order->is_payment_received)
Please note: This order still requires payment. Instructions on how to make payment can be found on your
order page: {{route('showOrderDetails', ['order_reference' => $order->order_reference])}}
@endif
Ticket | Qty. | Price | Fee | Total | |
{{$order_item->title}} | {{$order_item->quantity}} | @isFree($order_item->unit_price) FREE @else {{money($order_item->unit_price, $order->event->currency)}} @endif | @isFree($order_item->unit_price) - @else {{money($order_item->unit_booking_fee, $order->event->currency)}} @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)}} |