top of page

Introducing our delicious and customizable edible liquor labels, made from high-quality icing sheets that are die-cut to perfection. These unique labels are the perfect addition to any party or special event, allowing you to customize your liquor bottles with a personal touch that will leave a lasting impression on your guests.

Customize names, numbers, and colors

☆ Attribution Link ☆
"design elements"

https://www.freepik.com/raftel

☆ Shelf Life ☆
The toppers last 3 months inside the bag. Just keep them in the original packaging and avoid extreme temperatures (avoid refrigeration, pantry storage is recommended).

☆Description☆
The toppers are made with hypoallergenic ingredients (gluten-free, nut-free, peanut-free, dairy-free, soy-free), vegan, and kosher.

Whiskey cake topper, Customizable Whisky Barrel Cake Die-cut

$12.00Price
0/500
Quantity
Choose File
bottom of page
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }