@extends('layouts.admin') @section('title','Financial transactions') @section('heading','Financial ledger') @section('content')

Posted transactions

Searchable, exportable audit history across every wallet.

Export CSV
@forelse($transactions as $tx)@empty@endforelse
PostedTransactionType / reasonCurrencyAmountEntriesStatus
{{ $tx->created_at->format('d M Y H:i') }}{{ str($tx->public_id)->limit(16) }}
{{ $tx->initiator?->email ?? 'System' }}
{{ ucfirst($tx->type) }}
{{ str($tx->description)->limit(55) }}
{{ $tx->currency }}{{ number_format($tx->amount,2) }}{{ $tx->entries_count }}{{ $tx->status }}Audit
No transactions match the filter.
@endsection