@extends('layouts.admin') @section('title', 'Discount Management') @section('content')

Discounts & Promotions

Manage promotional codes and bulk discounts.

@forelse ($discounts ?? [] as $discount) @empty @endforelse
Discount Code Type Value Usage / Limit Expiry Date Status Actions
{{ $discount->code }}
{{ ucfirst($discount->type) }}
{{ $discount->type == 'percentage' ? $discount->value . '%' : 'PKR ' . number_format($discount->value, 2) }}
{{ $discount->usage_count }} / {{ $discount->usage_limit ?? '∞' }}
{{ $discount->expires_at ? $discount->expires_at->format('M d, Y') : 'Never' }}
@if($discount->is_active && (!$discount->expires_at || $discount->expires_at->isFuture())) Active @else Expired @endif Edit Delete
No discounts found.
@endsection