@php $tracking_numbers = json_decode($order->tracking_numbers, true); @endphp

{{ config('env.APPNAME') }} Order Confirmation


@if ($order->order_status == 5)

Your order (Ref No: {{ $order->ref_number }}) with {{ config('env.APP_NAME') }} has been partially shipped. You will receive another email once the remainder of your order has been shipped.

@elseif ($order->order_status = 6)

Your order with {{ config('env.APP_NAME') }} has been fully shipped. Below {{ count($tracking_numbers) > 1 ? 'are the tracking numbers' : 'is the tracking number' }} for your order.

@endif

Tracking number status can be found by entering the tracking number into the AusPost app, or by clicking on the tracking number to view tracking details via AusPost's website.

@foreach ($tracking_numbers as $tracking_number)

{{ $tracking_number }}

@endforeach

If you have any issues with your order, email us and quote your Order Reference Number: {{ $order->ref_number }}


{{-- Order Details --}}

Below is a summary of your order:

@include('mail.partials.table')

Best Regards,

{{ config('env.APP_NAME') }}


@include('mail.partials.footer')