mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
24 lines
730 B
PHP
24 lines
730 B
PHP
<div class="list-group">
|
|
@foreach($transactions as $journal)
|
|
<a class="list-group-item" title="{{$journal->date->format('jS M Y')}}" href="{{route('transactions.show',$journal->id)}}">
|
|
|
|
@if($journal->transactiontype->type == 'Withdrawal')
|
|
<i class="fa fa-long-arrow-left fa-fw" title="Withdrawal"></i>
|
|
@endif
|
|
@if($journal->transactiontype->type == 'Deposit')
|
|
<i class="fa fa-long-arrow-right fa-fw" title="Deposit"></i>
|
|
@endif
|
|
@if($journal->transactiontype->type == 'Transfer')
|
|
<i class="fa fa-arrows-h fa-fw" title="Transfer"></i>
|
|
@endif
|
|
|
|
{{{$journal->description}}}
|
|
|
|
<span class="pull-right small">
|
|
{!! Amount::formatJournal($journal) !!}
|
|
</span>
|
|
|
|
</a>
|
|
@endforeach
|
|
</div>
|