diff --git a/resources/views/en/Mailers/TicketMailer/SendOrderTickets.blade.php b/resources/views/en/Mailers/TicketMailer/SendOrderTickets.blade.php
index dc5b3279..ec43a774 100644
--- a/resources/views/en/Mailers/TicketMailer/SendOrderTickets.blade.php
+++ b/resources/views/en/Mailers/TicketMailer/SendOrderTickets.blade.php
@@ -3,99 +3,88 @@
@section('message_content')
Hello,
-Your order for the event {{$order->event->title}} was successful.
+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])}}
+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])}}
+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 + Ticket | - Qty. + Qty. | - Price + Price | - Fee + Fee | - Total + 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)}} - @endif - - | -- @if((int)ceil($order_item->unit_price) == 0) - - - @else - {{money($order_item->unit_booking_fee, $order->event->currency)}} - @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)}} - @endif - - | -|||||
| {{$order_item->title}} | +{{$order_item->quantity}} | + @if((int)ceil($order_item->unit_price) == 0) + FREE + @else + {{money($order_item->unit_price, $order->event->currency)}} + @endif | + @if((int)ceil($order_item->unit_price) == 0) + - + @else + {{money($order_item->unit_booking_fee, $order->event->currency)}} + @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)}} + @endif | -- Sub Total - | +||||
| + | Sub Total | {{$orderService->getOrderTotalWithBookingFee(true)}} | |||||||
| - | -- | -- | -- {{$order->event->organiser->tax_name}} + {{$order->event->organiser->tax_name}}({{$order->event->organiser->tax_value}}%) |
{{$orderService->getTaxAmount(true)}}
@@ -103,21 +92,13 @@ Order Email: {{$order->email}} | |||||
| - | -- | -- | -- Total - | ++ | Total | {{$orderService->getGrandTotal(true)}} | |||