Coupons & Discount Management

Create & control promo codes with minimum spend, product requirements, and usage limits.

Add New Coupon
@if($coupons->isEmpty())

No coupons found.

Click "Add New Coupon" above to set up promo codes for your store.

@else
@foreach($coupons as $coupon) @endforeach
Code Discount Min Spend Required Items Usage Limit Status Actions
{{ $coupon->code }} @if($coupon->type === 'percent') {{ $coupon->value }}% OFF @else ৳{{ number_format($coupon->value, 0) }} OFF @endif {{ $coupon->min_spend > 0 ? '৳' . number_format($coupon->min_spend, 0) : 'No Minimum' }} @if(!empty($coupon->required_product_ids)) Specific Products ({{ count($coupon->required_product_ids) }}) @if($coupon->required_min_qty > 1) Min Qty: {{ $coupon->required_min_qty }} @endif @else All Products @if($coupon->required_min_qty > 1) Min Qty: {{ $coupon->required_min_qty }} @endif @endif {{ $coupon->used_count }} / {{ $coupon->max_uses ?: '∞' }} @if($coupon->is_active) ACTIVE @else INACTIVE @endif Edit
@csrf @method('DELETE')
{{ $coupons->links() }}
@endif