@extends('layouts.app') @section('title', 'Coupons') @section('content')

Coupons

@foreach ($coupons as $c) @endforeach
CodeTypeValueMin OrderExpiresUsedStatus
{{ $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 : '' }}
@csrf @method('PUT')
@csrf @method('DELETE')
Loyalty point rates (how many points customers earn per sale, and what each point is worth when redeemed) are set in config/loyalty.php / your .env file — see the README.
@endsection