top of page
hompage
SOAP - Edited.png
SKU: SP3

Pine Tree with Ground Layers (with Oak Moss & Amber scent)

$14.99Price
Quantity

Cold-process soap with a goat milk melt-and-pour tree on top! About the size of 2-3 soaps. Made with many nourishing ingredients. The extra ingredients in the layers include:



-Bottom layer: Added activated charcoal


-Third layer from the bottom: Added orange peel powder and walnut shells


-Second layer from the top: Sandalwood powder and walnut shells


-Top layer: Cocoa powder and walnut shells (sprinkled with ground coffee, witch hazel, and cloves)



The rocks are pieces of a previous soap that I added to the soap mixture. The base of both soaps are: palm oil, olive oil, canola oil, castor oil, etc. The tree 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; } }