@extends('admin.layouts.app') @section('title', 'Coupons') @section('content')
Manage discount coupons
| Code | Type | Value | Min Amount | Usage | Validity | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $coupon->code }} | {{ ucfirst($coupon->type) }} | {{ $coupon->type == 'percentage' ? $coupon->value . '%' : '৳' . number_format($coupon->value) }} | {{ $coupon->min_amount ? '৳' . number_format($coupon->min_amount) : '-' }} | {{ $coupon->used_count }}/{{ $coupon->usage_limit ?? '∞' }} | @if($coupon->start_date && $coupon->end_date) {{ $coupon->start_date->format('M d') }} - {{ $coupon->end_date->format('M d, Y') }} @elseif($coupon->end_date) Until {{ $coupon->end_date->format('M d, Y') }} @else No expiry @endif | {{ $coupon->status ? 'Active' : 'Inactive' }} | |
|
No coupons found |
|||||||