@extends('layouts.app') @section('title', 'Coupons') @section('content')
| Code | Type | Value | Min Order | Expires | Used | Status | |
|---|---|---|---|---|---|---|---|
{{ $c->code }} |
{{ ucfirst($c->type) }} | {{ $c->type === 'percentage' ? $c->value.'%' : number_format($c->value,2) }} | {{ number_format($c->min_order_total,2) }} | {{ $c->expires_at?->format('d M Y') ?? 'Never' }} | {{ $c->times_used }}{{ $c->usage_limit ? ' / '.$c->usage_limit : '' }} |
config/loyalty.php
/ your .env file — see the README.