@extends('backend.master') @push('styles') @endpush @section('content')
| # | User | Service | MSISDN | Amount | Reference | Txn | Status | Created | Actions |
|---|---|---|---|---|---|---|---|---|---|
| #{{ $r->id }} | {{ $r->user?->name }} | @php $svcIcon = $r->service_type === 'postpaid' ? 'fa-file-invoice-dollar' : 'fa-sim-card'; @endphp {{ ucfirst($r->service_type) }} | {{ $r->msisdn }} | {{ number_format($r->amount, 2) }} | {{ $r->reference }} | {{ $r->txn_id }} | @php $badgeClass = match($r->status) { 'succeeded' => 'bg-success', 'failed' => 'bg-danger', default => 'bg-warning text-dark' }; $icon = match($r->status) { 'succeeded' => 'fa-circle-check', 'failed' => 'fa-circle-xmark', default => 'fa-hourglass-half' }; @endphp {{ ucfirst($r->status) }} | {{ $r->created_at?->format('Y-m-d H:i') }} | @if($r->status === 'pending') @else — @endif |
| No recharges found. | |||||||||