@extends('layouts.admin') @section('title','Coupons') @section('page-title','Coupons') @section('content')
| Code | Type | Value | Min Order | Uses | Expires | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $c->code }} | {{ ucfirst($c->discount_type) }} | {{ $c->discount_type==='percentage' ? $c->discount_value.'%' : '₵'.number_format($c->discount_value,2) }} | {{ $c->min_order_amount ? '₵'.number_format($c->min_order_amount,2) : '—' }} | {{ $c->used_count }}{{ $c->max_uses ? '/'.$c->max_uses : '' }} | {{ $c->expires_at ? $c->expires_at->format('M j, Y') : 'Never' }} | {{ $c->is_active ? 'Active':'Inactive' }} | |
| No coupons yet. | |||||||