Wallet & Ledger — All Transactions
@forelse($ledgerTransactions as $row) @php $tx = $row['transaction']; @endphp @empty @endforelse
Txn ID Product / Description Type Order Amt Commission Net Settlement Status Date
{{ Str::limit($tx->transaction_uid, 8, '') }}
{{ Str::limit($tx->product_name ?? $tx->description, 30) }}
@if($tx->order) Order #{{ $tx->order->order_number }} · {{ ucfirst($tx->order->order_status ?? '—') }} @endif
@if($tx->type === 'credit') Credit @else Debit @endif
{{ ucfirst($tx->listing_type ?? $tx->source ?? '—') }}
₹{{ number_format($tx->order_amount ?? 0, 2) }} ₹{{ number_format($tx->platform_charge ?? 0, 2) }} ₹{{ number_format($tx->net_amount ?? $tx->amount ?? 0, 2) }} @if($tx->source === 'order_sale') {{ $row['label'] }} @if($row['note'])
{{ $row['note'] }}@endif @else {{ ucfirst($tx->status) }} @endif
{{ $tx->created_at->format('d M Y H:i') }}
No ledger entries yet.