@extends('layouts.user') @section('title') Redeem Coupon @endsection @section('content')
{{ auth()->user()->username }}

{{ auth()->user()->email }}

Redeem Coupon Code
How it works

Enter your coupon code below to claim your reward. Valid coupons may add USDT balance to your wallet or products to your inventory.

@csrf
@error('code')

{{ $message }}

@enderror

Each coupon can only be used once per account

Cancel
Balance Coupons

Add USDT to your wallet

Redeem coupons that add balance directly to your main wallet. Use it for trading, purchasing AI models, or withdraw to your preferred wallet.

Product Coupons

Get free products

Receive products directly to your inventory. Products can be sold on the marketplace or used for trading to generate profits.

@if($redemptions && $redemptions->count() > 0)
Your Redemption History
@foreach($redemptions as $redemption) @endforeach
Coupon Code Type Reward Date
{{ $redemption->coupon->code }} @if($redemption->coupon->type === 'balance') Balance @else Product @endif @if($redemption->coupon->type === 'balance') +${{ number_format($redemption->coupon->amount, 2) }} USDT @else {{ $redemption->coupon->product->name ?? 'Product' }} x{{ $redemption->coupon->quantity }} @endif {{ $redemption->redeemed_at->format('M j, Y') }}
@if($redemptions->hasPages())
{{ $redemptions->links() }}
@endif
@endif
Frequently Asked Questions
How many times can I use a coupon?

Each coupon can only be redeemed once per account. Once you've used a coupon, it cannot be used again.

What happens when I redeem a balance coupon?

The USDT amount will be instantly added to your main wallet balance. You can use it for trading or withdraw it.

What happens when I redeem a product coupon?

The product(s) will be added to your inventory. You can view them in "My Inventory" section and sell them on the marketplace.

Where can I get coupon codes?

Coupons are distributed through promotions, special events, referral rewards, and email campaigns. Follow our social media channels to stay updated.

@endsection