@extends('layouts.admin', ['heading' => 'Wallet Management', 'subheading' => 'Balances, transfers, and ledger controls']) @section('content')
Wallet Transfer
@csrf
Bulk Wallet Adjust
@csrf
@if($imports->count())
Last batch: {{ $imports->first()->status }} ({{ $imports->first()->processed_rows }}/{{ $imports->first()->total_rows }})
@if($imports->first()->error_report_path) Download error report @endif @endif
@forelse($wallets as $wallet) @empty @endforelse
Member Income Repurchase Withdrawable Hold Locked Freeze Actions
{{ $wallet->user?->member_code ?? 'N/A' }}
{{ $wallet->user?->name ?? '' }}
{{ number_format((float) $wallet->income_balance, 2) }} {{ number_format((float) $wallet->repurchase_balance, 2) }} {{ number_format((float) $wallet->withdrawable_balance, 2) }} {{ number_format((float) $wallet->hold_balance, 2) }} {{ number_format((float) $wallet->locked_withdrawal_balance, 2) }}
@csrf
@csrf
@csrf
@csrf
View Ledger
No wallet records found.
{{ $wallets->links() }}
@endsection