@extends('layouts.admin') @section('title', 'Branch Wallets') @section('content')
Commission earnings, adjustments, penalties, refund deductions, and settlement debits.
| Branch | Balance | Locked | Lifetime Earnings | Lifetime Settled |
|---|---|---|---|---|
| {{ $branch->name }} | {{ number_format($branch->wallet?->balance ?? 0, 2) }} | {{ number_format($branch->wallet?->locked_balance ?? 0, 2) }} | {{ number_format($branch->wallet?->lifetime_earnings ?? 0, 2) }} | {{ number_format($branch->wallet?->lifetime_settled ?? 0, 2) }} |
| Date | Branch | Type | Order | Amount | Balance |
|---|---|---|---|---|---|
| {{ $transaction->created_at->format('d M Y H:i') }} | {{ $transaction->branch?->name }} | {{ str_replace('_', ' ', $transaction->type) }} | {{ $transaction->order?->order_number }} | {{ number_format($transaction->amount, 2) }} | {{ number_format($transaction->balance_after, 2) }} |