@extends('layouts.app') @section('title','Vouchers — BlueBando v3') @section('content')
| 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 ?? '—' }} |