@extends('layouts.app') @section('title','Vouchers — BlueBando v3') @section('content')

Vouchers

List of generated vouchers.
+ New Voucher
@if($vouchers->count()) @foreach($vouchers as $v) @endforeach
Code Router Plan Price Status Buyer Created By
{{ $v->code }} {{ $v->router?->name ?? '—' }} {{ $v->plan?->name ?? '—' }} {{ number_format($v->price) }} {{ $v->currency }} @php $cls = match($v->status){ 'active' => 'paid', 'pending' => 'pending', 'used','expired','cancelled' => 'failed', default => '' }; @endphp {{ ucfirst($v->status) }} {{ $v->buyer_phone ?: '—' }} {{ $v->created_at->format('Y-m-d H:i') }} {{ $v->creator?->name ?? '—' }}
{{ $vouchers->links() }}
@else
No vouchers yet.
@endif
@endsection