@foreach($Order->orderProducts as $OrderProduct)
screen
@lang('trans.productName') {{ $OrderProduct->product['title_' . lang()] }}
@lang('trans.quantity') {{ $OrderProduct['quantity'] }}
@lang('trans.price') {{ number_format($OrderProduct['price'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code }}
@lang('trans.total') {{ number_format($OrderProduct['total'] * (float)Country()->currancy_value, Country()->decimals , '.', '') . ' ' . Country()->currancy_code }}
@endforeach
@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') }}