@extends('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])}}
| Ticket | Qty. | Price | Fee | 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->code)}} @endif | @if((int)ceil($order_item->unit_price) == 0) - @else {{money($order_item->unit_booking_fee, $order->event->currency->code)}} @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->code)}} @endif | |
| Sub Total | {{money($order->amount + $order->order_fee, $order->event->currency->code)}} | ||||