@extends('layouts.admin') @section('title','Wallets') @section('heading','Wallets') @section('content')

Customer & partner wallets

Balances are derived from immutable double-entry ledger postings.

Fee rulesTransactionsReconcile
@forelse($wallets as $wallet)@empty@endforelse
OwnerRoleCurrencyStored balanceLedger balanceStatus
{{ $wallet->user->name }}
{{ $wallet->user->email }}
{{ ucfirst($wallet->user->role ?? 'customer') }}{{ $wallet->currency }}{{ number_format($wallet->balance,2) }}{{ number_format($wallet->ledger_balance ?? 0,2) }}@if(round((float)$wallet->balance,2)===round((float)($wallet->ledger_balance??0),2))Reconciled@elseMismatch@endifReview
No wallets match the filter.
@endsection