@lang('trans.subTotal'):
{{ number_format($Order['sub_total'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.discount'):
{{ number_format($Order['discount'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.vat'):
{{ number_format($Order['vat'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.payment_vat'):
{{ number_format($Order['payment_vat'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.wallet'):
{{ number_format($Order['wallet'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.deliveryCost'):
{{ number_format($Order['charge_cost'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}
@lang('trans.netTotal'):
{{ number_format($Order['net_total'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code . ' ' . session()->get('currency') }}