{{ session('success_msg') }}
@endif
@if (session()->has('error_msg'))
{{ session('error_msg') }}
@endif
@if (isset($errors) && count($errors->all()) > 0)
@foreach ($errors->all() as $error)
@endif
@if (Cart::instance('cart')->count() > 0)
{{ $error }}
@endforeach{{ __('Cross-selling products') }}
@if (count($crossSellProducts) > 0)
@foreach ($crossSellProducts as $crossSellProduct)
{!! Theme::partial('product.product_simple', ['product' => $crossSellProduct]) !!}
@endforeach
{{ __('Total') }}
@if ($promotionDiscountAmount)
@endif
{{ __('Subtotal') }} | {{ format_price(Cart::instance('cart')->rawSubTotal()) }} |
---|---|
{{ __('Discount promotion') }} | {{ format_price($promotionDiscountAmount) }} |
{{ __('Total') }} | {{ format_price(Cart::instance('cart')->rawTotal() - $promotionDiscountAmount - $couponDiscountAmount) }} |