@extends('layouts.admin') @section('title', 'Reconciliation') @section('content')
Financial control

Balance reconciliation.

Compare customer balances with recorded deposits, withdrawals, and rewards. Custody balances must be verified independently.

@forelse($assets as $row)@empty@endforelse
AssetAmount owed to usersDeposits creditedWithdrawals requestedRewards issued
{{ $row['asset']->symbol }}{{ $row['liability'] ?: '0' }}{{ $row['deposits'] ?: '0' }}{{ $row['withdrawals'] ?: '0' }}{{ $row['rewards'] ?: '0' }}
No active assets.
@endsection