| Discount Code: |
{{ $discount->code }} |
| Type: |
@if($discount->type === 'percentage')
Percentage
{{ $discount->value }}%
@else
Fixed Amount
{{ \App\Support\Currency::symbol() }}{{ number_format($discount->value, 2) }}
@endif
|
| Description: |
{{ $discount->description ?? 'N/A' }} |
| Usage Limit: |
{{ $discount->usage_limit ?? 'Unlimited' }} |
| Times Used: |
{{ $discount->usage_count }}/{{ $discount->usage_limit ?? '∞' }} |
| Valid From: |
{{ $discount->valid_from?->format('M d, Y') ?? 'N/A' }} |
| Valid To: |
{{ $discount->valid_to?->format('M d, Y') ?? 'N/A' }} |
| Status: |
@if($discount->is_active)
Active
@else
Inactive
@endif
|