{{ __('Free Shipping After Order') }} {{ PriceHelper::setCurrencyPrice($free_shipping->minimum_price) }}
@endif @endif| {{ __('Cart subtotal') }}: | {{ PriceHelper::setCurrencyPrice($cart_total) }} |
| {{ __('Estimated tax') }}: | {{ PriceHelper::setCurrencyPrice($tax) }} |
| {{ __('State tax') }}: | {{ PriceHelper::setCurrencyPrice(Auth::check() && Auth::user()->state_id ? ($cart_total * Auth::user()->state->price) / 100 : 0) }} |
| {{ __('Coupon discount') }}: | - {{ PriceHelper::setCurrencyPrice($discount ? $discount['discount'] : 0) }} |
| {{ __('Shipping') }}: | {{ PriceHelper::setCurrencyPrice($shipping ? $shipping->price : 0) }} |
| {{ __('Order total') }} | {{ PriceHelper::setCurrencyPrice($grand_total) }} |