{{__('messages.t_order_summary')}}
{{__('messages.t_cart_quantity',['cartquantity'=>$order->items->count()])}}
{{ config('app.currency_symbol').' '. \Number::format(floor($order->total_amount), locale: $paymentSettings->currency_locale) }}
{{__('messages.t_discount')}} {{ config('app.currency_symbol').' '. \Number::format(floor($order->discount_amount), locale: $paymentSettings->currency_locale) }}
{{ __('messages.t_delivery_charges') }} {{ __('messages.t_free_charge') }}
{{ __('messages.t_total_amount') }}{{ config('app.currency_symbol').' '. \Number::format(floor($order->subtotal_amount), locale: $paymentSettings->currency_locale) }}
{{__('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 }}