@lang('Total MRP')
{{ Session::has('cart') ? App\Models\Product::convertPrice(Session::get('cart')->totalPrice) : '0.00' }}
@lang('Tax')
0
@if (Session::has('coupon'))
@lang('Discount') {{ Session::get('coupon_percentage') == 0 ? '' : '(' . Session::get('coupon_percentage') . ')' }}
@if ($gs->currency_format == 0)
{{ $curr->sign }}{{ Session::get('coupon') }}
@else
{{ Session::get('coupon') }}{{ $curr->sign }}
@endif
@else
@lang('Discount')
{{ $curr->sign }}{{ Session::get('coupon') }}
@endif
@if ($digital == 0)
@lang('Shipping Cost')
{{ App\Models\Product::convertPrice(0) }}
@lang('Packaging Cost')
{{ App\Models\Product::convertPrice(0) }}
@endif