mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-06-12 11:12:11 +00:00
15 lines
586 B
PHP
15 lines
586 B
PHP
<div class="list-group">
|
|
@foreach($transactions as $transaction)
|
|
|
|
<a class="list-group-item list-group-item-action d-flex justify-content-between align-items-center" href="{{ route('transactions.show', [$transaction['transaction_group_id']]) }}">
|
|
@if('' !== (string) $transaction['transaction_group_title'])
|
|
{{ $transaction['transaction_group_title'] }}:
|
|
@endif
|
|
{{ $transaction['description'] }}
|
|
<span class="small">
|
|
<x-generic.amount :transaction="$transaction" />
|
|
</span>
|
|
</a>
|
|
@endforeach
|
|
</div>
|