@include('frontend.template.basic.rep._brand_logo')

{!! __('Thank you for your order') !!}!

{!! $thankyou !!}

{!! __("We're processing your order now, here are the details") !!}

@if(!empty($extraInstructions))

{!! $extraInstructions !!}

@endif
@if( !$cartSession and $order )

{!! __('Order number') !!}

{{(!empty($order->import_id) ? $order->import_id : $order->id)}}

@endif

{!! __('Order Date') !!}

{{$order_time}}

{!! __('Delivery details') !!}

{{$shipping_address->address}}

{{$shipping_address->address_2}}

{{ collect([@$shipping_address->city, @$shipping_address->state, @$shipping_address->zip])->filter()->join(', ') }}

{{$shipping_address->country}}

@if(isset($trackingId) && !empty($trackingId))

{!! __('Order Tracking ID') !!}

{{$trackingId}}

@endif

{!! __('Summary') !!}

@if(optional($order)->total_tax && optional($order)->total_shipping > 0)
{!! __('Sub Total before delivery') !!}

@if( $order ) {{ priceWithCurrencySymbol($order->total) }} @endif

@endif @if(optional($order)->total_tax && optional($order)->total_shipping > 0)

{!! __('Delivery charge') !!}

@if( $order ) {{ priceWithCurrencySymbol($order->total_shipping) }} @endif

@if(optional($order)->total_tax > 0)

{!! __('Tax') !!}

{{ priceWithCurrencySymbol($order->total_tax) }}

@endif @endif @if(optional($order)->card_fee > 0)

{!! __('Card Processing Fee') !!}

{{ priceWithCurrencySymbol($order->card_fee) }}

@endif @if(optional($order)->order_discount > 0)

{!! __('Order Discount') !!}

{{ priceWithCurrencySymbol($order->order_discount) }}

@endif @if(optional($order)->credits > 0)

{!! __('Credits') !!}

{{ priceWithCurrencySymbol($order->credits) }}

@endif
{!! __('Order Total') !!}

@if( $order ) {{ priceWithCurrencySymbol($order->grand_total) }} @endif

@if(!empty($cardType) and $cardType != 'Offline Payment')

{!! __('Paid with') !!} {{$cardType}} {!! __('card') !!} **********{{$card_last_digits}}

@endif