@extends('layouts.admin') @section('title', 'User — ' . ($user->name ?? 'Details')) @push('styles') @endpush @section('content')
| Title | Type | Amount | Status | Date |
|---|---|---|---|---|
| {{ $tx->title ?? 'N/A' }} | {{ ucfirst($tx->type ?? 'escrow') }} | ₦{{ number_format($tx->amount ?? 0, 2) }} | {{ ucfirst($tx->status ?? 'pending') }} | {{ $tx->created_at ? $tx->created_at->format('M d, Y') : '' }} |
| No transactions found. | ||||
| Type | Amount | Balance After | Description | Date |
|---|---|---|---|---|
| {{ ucfirst($wtx->type ?? '') }} | ₦{{ number_format($wtx->amount ?? 0, 2) }} | ₦{{ number_format($wtx->balance_after ?? 0, 2) }} | {{ Str::limit($wtx->description ?? '', 40) }} | {{ $wtx->created_at ? $wtx->created_at->format('M d, Y') : '' }} |
| No wallet transactions. | ||||