vendor/store.shopware.com/swagb2bplatform/SwagB2bPlatform/Resources/views/storefront/page/checkout/cart/index.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
  2. {% block page_checkout_cart_add_product_and_shipping %}
  3.     {{ parent() }}
  4.     {% if b2bSuite %}
  5.         {% sw_include '@SwagB2bPlatform/storefront/_custom/cart/b2b-cart-orderlist.html.twig' %}
  6.     {% endif %}
  7. {% endblock %}
  8. {% block page_checkout_confirm_errors %}
  9.     {% if b2bSuite %}
  10.         {% sw_include '@SwagB2bPlatform/storefront/_custom/cart/b2b-cart-alerts.html.twig' with {
  11.             cart: page.cart
  12.         } %}
  13.     {% endif %}
  14.     {{ parent() }}
  15. {% endblock %}