custom/plugins/WebkulBookingReservation/src/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_shipping_costs %}
  3.     {% for lineItem in page.cart.lineItems %}
  4.         {% if lineItem.extensions['booking'] %}
  5.         {% else %}
  6.             {{parent()}}
  7.         {% endif %}
  8.     {% endfor %}
  9. {% endblock %}