@extends('layouts.admin') @section('title', 'Vouchers') @section('page-title', 'Vouchers') @section('content')
Create promo codes for paid plans and track redemption usage.
| Code | Plan | Period | Usage | Expiry | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $voucher->code }}
@if($voucher->notes)
{{ $voucher->notes }}
@endif
|
{{ ucfirst($voucher->plan) }} | {{ ucfirst($voucher->period) }} · {{ $voucher->days }} days | {{ $voucher->used_count }}/{{ $voucher->max_uses }} | {{ $voucher->expires_at?->format('d M Y') ?? 'No expiry' }} | {{ $voucher->isUsable() ? 'Usable' : 'Inactive' }} |
{{-- Send push notification --}}
|
| No vouchers created yet. | ||||||