@extends('layouts.admin-sidebar') @section('title', 'User Wallet - ' . $user->full_name) @section('page-title', 'User Wallet Management') @section('page-description', 'Manage user wallet balance, transactions, and settings') @section('content')
Wallet Management
Current Balance
₦{{ number_format($wallet->balance, 2) }}
Status
@if($wallet->is_frozen) Frozen @else Active @endif
Created
{{ $wallet->created_at->format('M d, Y') }}
Last Updated
{{ $wallet->updated_at->format('M d, Y') }}
Reference | Type | Amount | Status | Description | Date |
---|---|---|---|---|---|
{{ $transaction->reference }} | {{ ucfirst($transaction->type) }} | ₦{{ number_format($transaction->amount, 2) }} | @if($transaction->status === 'completed') Completed @elseif($transaction->status === 'pending') Pending @else Failed @endif | {{ $transaction->description ?? $transaction->narration }} | {{ $transaction->created_at->format('M d, Y H:i') }} |
This wallet has no transaction history yet.
This user does not have a wallet yet.