Promo Codes Data Table

@foreach ($promoCodes as $promoCode) @endforeach
# Code Type Discount Quantity Used Expires At Status Actions
{{ $loop->iteration }} {{ $promoCode->code }} {{ ucfirst($promoCode->type) }} @if ($promoCode->type === 'percent') {{ $promoCode->discount }}% @else ${{ number_format($promoCode->discount, 2) }} @endif {{ $promoCode->quantity }} {{ $promoCode->used_count }} {{ $promoCode->expires_at ? $promoCode->expires_at->format('Y-m-d') : '-' }} @if ($promoCode->is_active) Active @else Inactive @endif
@csrf
{{ $promoCodes->links() }}