@extends('layouts.admin') @section('title', 'Vouchers') @section('page-title', 'Vouchers') @section('content')

Voucher Campaigns

Create promo codes for paid plans and track redemption usage.

Create Vouchers
@forelse($vouchers as $voucher) @empty @endforelse
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 --}}
@csrf
@csrf @method('DELETE')
No vouchers created yet.
{{ $vouchers->links() }}
{{-- Send Push Modal --}}
@push('scripts') @endpush @endsection