@extends('backend.master') @push('styles') @endpush @section('content')
| # | User | Amount | Card | Holder | Reference | Status | Requested | Actions |
|---|---|---|---|---|---|---|---|---|
| #{{ $s->id }} |
{{ $s->user?->name }}
{{ $s->user?->phone ?? $s->user?->email }}
|
{{ number_format($s->amount, 2) }} |
{{ $s->card?->brand ?? 'Card' }}
{{ $masked }}
|
{{ $s->holder_name }} | {{ $s->reference_code }} | @php $badgeClass = match($s->status) { 'approved' => 'bg-success', 'rejected' => 'bg-danger', default => 'bg-warning text-dark' }; $icon = match($s->status) { 'approved' => 'fa-circle-check', 'rejected' => 'fa-circle-xmark', default => 'fa-hourglass-half' }; @endphp {{ ucfirst($s->status) }} | {{ $s->created_at?->format('Y-m-d H:i') }} | {{-- Details button (new) --}} {{-- proof link --}} @if($s->proof_screenshot_path) Proof @endif @if($s->status==='pending') @else Processed @endif |
| No card add-money requests found. | ||||||||