@if (settings()->show_order_tax == true)
{{ __('Order Tax') }} ({{ $global_tax }}%)
(+) {{ format_currency(Cart::instance($cart_instance)->tax()) }}
@endif
@if (settings()->show_discount == true)
{{ __('Discount') }} ({{ $global_discount }}%)
(-) {{ format_currency(Cart::instance($cart_instance)->discount()) }}
@endif
{{ __('Shipping') }}
(+) {{ format_currency($shipping_amount) }}
{{ __('Grand Total') }}
@php
$total_with_shipping = Cart::instance($cart_instance)->total() + (float) $shipping_amount;
@endphp
(=) {{ format_currency($total_with_shipping) }}