Cart & Summary
Manage shopping cart items, display order summaries, and offer discount codes using Flowbite Blade e-commerce block components.
Default Shopping Cart
Order summary
- Original price
- $7,592.00
- Savings
- -$299.00
- Store Pickup
- $99
- Tax
- $799
- Total
- $8,191.00
Blade code
<x-fwb.blocks.ecommerce.shopping-cart />
Custom Shopping Cart
Your Bag
Order summary
- Original price
- $7,592.00
- Savings
- -$299.00
- Store Pickup
- $99
- Tax
- $799
- Total
- $8,191.00
Blade code
<x-fwb.blocks.ecommerce.shopping-cart title="Your Bag" />
Default Order Summary
- Original price
- $6,592.00
- Savings
- -$299.00
- Store Pickup
- $99
- Tax
- $799
- Total
- $7,191.00
Blade code
<x-fwb.blocks.ecommerce.order-summary />
Custom Order Summary
Review your order
- Original price
- $6,592.00
- Savings
- -$299.00
- Store Pickup
- $99
- Tax
- $799
- Total
- $7,191.00
Blade code
<x-fwb.blocks.ecommerce.order-summary title="Review your order" />
Default Discount
Blade code
<x-fwb.blocks.ecommerce.discount />
Custom Discount
Get 10% OFF your first order!
Sign up for our newsletter and receive an exclusive discount code.
Discount code:
WELCOME10
Blade code
<x-fwb.blocks.ecommerce.discount
title="Get 10% OFF your first order!"
description="Sign up for our newsletter and receive an exclusive discount code."
code="WELCOME10"
buttonText="Start Shopping"
buttonHref="/products"
/>
Component Properties
Shopping Cart x-fwb.blocks.ecommerce.shopping-cart
| Prop | Type | Default | Description |
|---|---|---|---|
| title | string | Shopping Cart |
Section heading for the shopping cart. |
| summary | slot | - | Named slot to replace the default sidebar with order summary and voucher form. |
| slot | slot | - | Default slot to replace the cart item list. |
Order Summary x-fwb.blocks.ecommerce.order-summary
| Prop | Type | Default | Description |
|---|---|---|---|
| title | string | Order summary |
Section heading for the order summary. |
| totals | slot | - | Named slot to replace the default price breakdown and total. |
| actions | slot | - | Named slot to replace the default "Return to shopping" and "Send the order" buttons. |
| slot | slot | - | Default slot to replace the order items list. |
Discount x-fwb.blocks.ecommerce.discount
| Prop | Type | Default | Description |
|---|---|---|---|
| title | string | Get 5% OFF your order! |
Discount banner heading. |
| description | string | Use our exclusive discount... |
Description text for the discount offer. |
| code | string | SAVE5NOW |
Discount code displayed with a copy-to-clipboard button. |
| buttonText | string | Shop Now |
Label for the call-to-action button. |
| buttonHref | string | # |
URL for the call-to-action button. |
| actions | slot | - | Named slot to replace the default button. |
| slot | slot | - | Default slot for additional content below the discount section. |