FEEL THE FAME EXCLUSIVE .925 GENUINE COW HIDE LEATHER BELT RELEASES 04.20.26
0
On sale

RAFFLE by FEEL THE FAME

$20.00

Enter our Bi-Monthly Raffle where Everyone’s a Winner!

Raffle limited to 250 tickets total, Once all 250 tickets are purchased the raffle will be marked sold out and the raffle will proceed.

Raffle tickets come with a complementary FEEL THE FAME tournament basketball shorts

Tickets are $20 each for your chance to win a pair of Jordan Infrared 6’s

Raffle entry number will be emailed directly to you after purchase for you to keep and for our verification process in the case you are the winner of the raffle.

Winners Circle

1st. Jordan Infrared 6’s

2nd. $150

3rd. $75

4th. $25

5th. $100 Gift Card for feelthefame.com

// Controllers/CheckoutController.cs using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; namespace CheckoutExample.Controllers { [ApiController] [Route("api/[controller]")] public class CheckoutController : ControllerBase { [HttpGet] public IActionResult Get(string products, string coupon) { // Parse products var productQuantities = new Dictionary(); if (!string.IsNullOrEmpty(products)) { foreach (var entry in products.Split(',')) { var parts = entry.Split(':'); if (parts.Length == 2) { if (int.TryParse(parts[1], out int quantity)) { productQuantities.Add(parts[0], quantity); } } } } // Build response var response = new { Products = productQuantities, Coupon = coupon ?? "No coupon applied" }; return Ok(response); } } }