@php $subtotal = 0; $tax = 0; @endphp @if (Session::has('pos.cart')) @else

{{ translate('No Product Added') }}

@endif
{{translate('Sub Total')}} {{ single_price($subtotal) }}
{{translate('Tax')}} {{ single_price($tax) }}
{{translate('Shipping')}} {{ single_price(Session::get('pos.shipping', 0)) }}
{{translate('Discount')}} {{ single_price(Session::get('pos.discount', 0)) }}
{{translate('Total')}} {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }}