Order Placed!

Thank you for your order. You will receive a confirmation email shortly.

Order Details

Order No: {{ $order->order_no }}

Transaction Id: #{{ $order->transaction }}

@foreach($order->orderItems as $orderItem) @endforeach
Image Item Name Qty. Price Subtotal
Variant Image {{ $orderItem->item->name }} @if($orderItem->item_type == "rent")

Dropoff : {{ \Carbon\Carbon::parse($orderItem->start_date)->setTimezone(config('app.timezone'))->format('d M Y') }} -> Pickup : {{ \Carbon\Carbon::parse($orderItem->end_date)->setTimezone(config('app.timezone'))->format('d M Y') }}

@endif
{{ $orderItem->qty }} ${{ $orderItem->price }} ${{ $orderItem->price * $orderItem->qty }}
Item Subtotal:
${{ $order->item_subtotal }}
GST ({{ $order->gst_rate }}%):
${{ $order->gst_amount }}
@if($order->pst_rate)
PST ({{ $order->pst_rate }}%):
${{ $order->pst_amount }}
@endif
Order Total (Including GST):
${{ $order->total }}
Payment Info:
{{ $order->payment_type }}
Billing Address

{{ $order->billing->name }}

{{ $order->billing->phone }}

{{ $order->billing->toString() }}

Shipping Address

{{ $order->shipping->name }}

{{ $order->shipping->phone }}

{{ $order->shipping->toString() }}