@extends('layouts.admin')
@section('title','Coupons')
@section('page-title','Coupons')
@section('content')
| Code |
Type |
Value |
Uses |
Valid Until |
Status |
Actions |
@forelse($coupons as $coupon)
| {{ $coupon->code }} |
{{ $coupon->type }} |
{{ $coupon->type === 'fixed' ? 'Rs. '.number_format($coupon->value) : $coupon->value.'%' }}
|
{{ $coupon->used_count }} / {{ $coupon->usage_limit ?: '∞' }} |
{{ $coupon->expires_at ? $coupon->expires_at->format('d M Y') : 'Never' }}
@if($coupon->expires_at && $coupon->expires_at->isPast()) Expired @endif
|
|
|
@empty
| No coupons found. |
@endforelse
{{ $coupons->links() }}
@endsection