mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-09 15:43:19 -06:00
12 lines
323 B
PHP
12 lines
323 B
PHP
<table class="table table-condensed">
|
|
<tr>
|
|
<th>Total</th>
|
|
<th>{{mf($sum*-1)}}</th>
|
|
</tr>
|
|
@foreach($rows as $name => $entry)
|
|
<tr>
|
|
<td><a href="{{route('accounts.show',$entry['id'])}}">{{{$name}}}</a></td>
|
|
<td>{{mf($entry['amount']*-1)}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</table> |