{# # Order Review Table (Bootstrap 5 Override) # # Renders the order summary table during checkout. # # Expected context: # cart_items - Array of cart items for review # cart_subtotal - Subtotal HTML # cart_total - Total HTML # coupons - Applied coupons # fees - Fees # # WooCommerce PHP equivalent: checkout/review-order.php # # @package WcBootstrap # @since 0.1.0 #}
| {{ __('Product') }} | {{ __('Subtotal') }} |
|---|---|
| {{ item.product_name|esc_html }} × {{ item.quantity }} {{ item.item_data_html|default('')|raw }} | {{ item.subtotal|raw }} |
| {{ __('Subtotal') }} | {{ cart_subtotal|raw }} |
| {{ __('Coupon:') }} {{ coupon.code|esc_html }} | {{ coupon.discount_html|raw }} |
| {{ fee.name|esc_html }} | {{ fee.total_html|raw }} |
| {{ __('Total') }} | {{ cart_total|raw }} |