@php $itemDiscountTotal =$orderDiscountTotal = $taxedItemNetSales = $untaxedItemNetSales = $taxeduntexedNetSales = $discountTotal = 0.00; if (!empty($disSalesTotal)) { $itemDiscountTotal = number_format($disSalesTotal['item_discount_total'], 2); $orderDiscountTotal = number_format($disSalesTotal['order_discount_total'], 2); $discountTotal = number_format($disSalesTotal['item_discount_total'] + $disSalesTotal['order_discount_total'], 2); } @endphp
{{ __('lbl.item_discount') }} {{storecurrency().$itemDiscountTotal }}
{{ __('lbl.order_discount') }} {{storecurrency().$orderDiscountTotal }}
{{ __('lbl.total') }} {{storecurrency().$discountTotal }}