top of page
hompage
SOAP - Edited.png

Handmade Pie Soap Slice: Blueberry & Apple w/ Goat Milk Strawberry

$10.99Price
Pie Type
Apple
Blueberry
Quantity

Pie soaps: Apple and Blueberry.



The blueberry pie soap is stamped with "Handmaden Soap & Candle Co."



Bottom layer: 1st batch of cold-process soap


Middle layer: Melt-and-pour fruit pieces and pie filling


Crust and vanilla cream: 2nd batch of cold-process soap


Strawberry: Melt-and-pour goat milk soap



The two cold-process soaps have a light, fresh scent. The middle portion has a sweeter pie scent.



The strawberry and pie filling may "sweat"--this is a natural phenomenon that happens to melt-and-pour soap with temperature changes. :)

    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; } }