{# # Cart Page (Bootstrap 5 Override) # # Main cart page with items table and totals sidebar. # Layout: col-lg-8 (items) + col-lg-4 (totals). # # Expected context: # cart_items - Array from WC()->cart->get_cart(), each with: # .key - Cart item key # .product - WC_Product object # .product_id - Product ID # .product_name - Filtered product name # .permalink - Product URL # .quantity - Quantity # .subtotal - Line subtotal HTML # .price - Unit price HTML # .thumbnail - Product thumbnail HTML # .item_data_html - Variation data HTML # .remove_url - Remove item URL # .visible - Whether item is visible # .css_class - Item CSS class # # WooCommerce PHP equivalent: cart/cart.php # # @package WcBootstrap # @since 0.1.0 #} {{ do_action('woocommerce_before_cart') }}