{{__('messages.t_order_summary')}}
{{__('messages.t_cart_quantity',['cartquantity'=>$order->items->count()])}}
{{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->subtotal_amount)) : formatPriceWithCurrency($order->subtotal_amount) }}
{{--
{{__('messages.t_discount')}} {{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->discount_amount)) : formatPriceWithCurrency($order->discount_amount) }}
--}}
@if (!isEnablePointSystem() && isECommerceTaxOptionEnabled())
{{__('messages.t_tax')}} {{ currencyToPointConversion(formatPriceWithCurrency($order->tax_amount))}}
@endif
{{ __('messages.t_delivery_charges') }}{{ __('messages.t_free_charge') }}
{{ __('messages.t_total_amount') }}{{ isEnablePointSystem() ? currencyToPointConversion(formatPriceWithCurrency($order->total_amount)) : formatPriceWithCurrency($order->total_amount) }}
@if (!isEnablePointSystem() && $order->total_amount != $order->converted_amount)
{{__('messages.t_my_purchase_converted_amount')}} {{ currencyToPointConversion(formatPriceWithCurrency($order->converted_amount))}}
@endif
{{__('messages.t_payment_info')}}
{{__('messages.t_payment_method')}} {{ \Str::title($order->payment_method) }}
{{__('messages.t_date_of_process')}} {{ \Str::title(\Carbon\Carbon::parse($order->created_at)->format('d M Y h:m a') ) }}
{{__('messages.t_shipping_info')}}
{{__('messages.t_order_contact_name')}}{{ $order->contact_name }}
{{__('messages.t_order_address')}}{{$order->shipping_address}}
{{__('messages.t_order_contact_no')}}{{ $order->contact_phone_number }}