@extends('layouts.app') @section('title', 'Promotions & Coupons - Vendor') @section('content')
| Code / Type | Discount | Usage | Expiry | Action |
|---|---|---|---|---|
|
{{ $coupon->code }}
{{ $coupon->type == 'percent' ? 'Percentage Off' : 'Flat Discount' }}
|
{{ $coupon->type == 'percent' ? $coupon->value.'%' : '₹'.number_format($coupon->value, 2) }}
@if($coupon->min_cart_value)
Min Spend: ₹{{ number_format($coupon->min_cart_value, 2) }}
@endif
|
|
@if($coupon->expiry_date)
{{ \Carbon\Carbon::parse($coupon->expiry_date)->format('d M, Y') }}
@else
No Expiry
@endif
|
|
No Active CouponsCreate promo codes to attract more customers to your store. Add First Coupon |
||||
Percentage-based coupons (e.g. 10% OFF) often perform 15% better for lower-priced items.