{{ __('Coupons') }}
{{ __('Manage discount codes, promotional offers, and usage limits.') }}
{{ __('Coupon Directory') }}
{{ __('Showing') }} {{ $coupons->count() }} {{ __('of') }} {{ $coupons->total() }} {{ __('coupons.') }}
| {{ __('Code') }} | {{ __('Type') }} | {{ __('Discount') }} | {{ __('Usage') }} | {{ __('Status') }} | {{ __('Actions') }} | |
|---|---|---|---|---|---|---|
{{ $coupon->code }}
{{ $coupon->name }} |
{{ $coupon->type === 'percent_off' ? __('Percentage') : __('Fixed') }} | @if($coupon->type === 'percent_off') {{ $coupon->percent_off }}% @else @currency($coupon->amount_off) @endif | {{ $coupon->times_redeemed ?? 0 }} / {{ $coupon->max_redemptions ?? '∞' }} | @php $isExpired = $coupon->expires_at && \Carbon\Carbon::parse($coupon->expires_at)->isPast(); @endphp @if($isExpired) {{ __('Expired') }} @elseif($coupon->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif | ||
| {{ __('No coupons found.') }} | ||||||
{{ $coupon->code }}
{{ $coupon->name }}