# {{ $inv_cus['order_prefix'].$order['order_id'] }}
{{ date('d-M-Y | h:i A',strtotime($order['created_at'])) }}

{{ __("Order from") }}

{{ $order->user->name }}

{{ $order->user->email }}

@if($order->user->mobile)

{{ $order->user->mobile }}

@endif @if(isset($order->user->country->nicename))

{{ $order->user['city']['name'] }}, {{ $order->user['state']['name'] }}, {{ $order->user['country']['nicename'] }}

@endif @foreach($order->invoices->where('status','pending') as $suborder)
@if($suborder->variant) @if($suborder->variant->variantimages) @else @endif @endif @if($suborder->simple_product) @endif
@if(isset($suborder->variant)) {{ $suborder->variant->products['name'] }} (x {{ $suborder['qty'] }}) @endif @if(isset($suborder->simple_product)) {{ $suborder->simple_product['product_name'] }} (x {{ $suborder['qty'] }}) @endif
{{ $suborder->price + $suborder->tax_amount + $suborder->shipping }}
({{__("Incl. of Tax & Shipping")}}).
@endforeach
{{__("Subtotal")}}:
@if($order->discount != 0) {{ sprintf("%.2f",$order['order_total'] + $order['discount']) }} @else {{ sprintf("%.2f",$order['order_total']) }} @endif
@if($order->discount != 0)
{{__('Coupon discount:')}}
{{ sprintf("%.2f",$order['discount']) }}
@endif @if($order->gift_charge != 0)
{{__("Gift Pkg. charges")}}:
+ {{ sprintf("%.2f",$order->gift_charge) }}
@endif @if($order->handlingcharge != 0)
{{__("Handling charges")}}:
+ {{ sprintf("%.2f",$order->handlingcharge) }}
@endif
Total:
@if($order->discount != 0) {{ sprintf("%.2f",$order->order_total + $order->handlingcharge) }} @else {{ sprintf("%.2f",$order->order_total + $order->handlingcharge) }} @endif

{{__("Paid by")}}:

{{ $order->payment_method }}

{{ __("Payment received") }}

{{__("Yes")}}