@props(['transactions'])

Recent Transactions

See all
@forelse ($transactions as $transaction) @php $isCredit = $transaction->type === 'credit'; @endphp
{{-- Icon --}}
@if ($isCredit) @else @endif
{{-- Details --}}

{{ $transaction->narration }}

{{ optional($transaction->transacted_at)->format('M d, Y ยท h:i A') }}

@if (($transaction->gateway_status ?? 'local') !== 'local') {{ $transaction->gateway_status }} @endif
{{-- Amount --}}

{{ $isCredit ? '+' : '-' }}K{{ number_format((float) $transaction->amount, 2) }}

@empty

No transactions yet

Your activity will appear here

@endforelse