@extends('admin.layouts.app') @section('title', 'Coupons') @section('content')
Manage discount coupons and promotions.
| Code | Type | Value | Usage | Validity | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $coupon->code }} | {{ $coupon->type }} | {{ $coupon->type == 'percentage' ? $coupon->value . '%' : '₹' . number_format($coupon->value, 2) }} | {{ $coupon->used_count }} / {{ $coupon->usage_limit ?? '∞' }} | {{ $coupon->valid_from ? $coupon->valid_from->format('M d, Y') : 'Now' }} - {{ $coupon->valid_until ? $coupon->valid_until->format('M d, Y') : 'Forever' }} |
|
|
|
No coupons found. |
||||||