No credit transactions found.
@else| User | Type | Amount | Balance After | Description | Date |
|---|---|---|---|---|---|
|
{{ $transaction->user->name ?? 'N/A' }} {{ $transaction->user->email ?? '' }} |
{{ Str::title(str_replace('_', ' ', $transaction->type)) }} | {{ $transaction->amount >= 0 ? '+' : '' }}{{ number_format($transaction->amount) }} | {{ number_format($transaction->balance_after_transaction) }} | {{ Str::limit($transaction->description, 50) }} | {{ $transaction->created_at->format('Y-m-d H:i:s') }} |