top of page

These toppers are FULLY customizable. That means if you miss Pluto or you want a moon, just send me a message with any requirements.

 

☆Description☆

The toppers are made with hypoallergenic ingredients, vegan, and kosher.
There is only one flavor available (vanilla). If you need a special size or shape please let us know and we will try to accommodate your order, just send us a convo here on Etsy.

 

☆Size☆


The size shown in the picture is a 6 x 9 sheet.
 

✧5.5" x 7.5" 
Average planet size 0.5" - 1.4"
Sun 3"

 

✧9" x 8" 
Average planet size 1.8" - 1"
Sun 4.2"

 

✧14" x 11" 
Average planet size 2.6" - 1.5"
Sun 6"

 

We could customize any size in between our options! Just send me a message.

EDIBLE planets - Frosting planets - Cake decoration- Space cake

$13.00Price
0/50
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; } }