mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-08-28 17:07:21 +00:00
Showed the wrong value.
This commit is contained in:
@@ -152,9 +152,9 @@
|
||||
@foreach($groupedExpenses as $expense)
|
||||
<tr>
|
||||
<td><a href="{{route('accounts.show',$expense['id'])}}">{{{$expense['name']}}}</a></td>
|
||||
<td>{!! Amount::format(floatval($expense['amount'])*-1) !!}</td>
|
||||
<td>{!! Amount::format(floatval($expense['queryAmount'])*-1) !!}</td>
|
||||
</tr>
|
||||
<?php $sum += floatval($expense['amount'])*-1;?>
|
||||
<?php $sum += floatval($expense['queryAmount'])*-1;?>
|
||||
@endforeach
|
||||
<tr>
|
||||
<td><em>Sum</em></td>
|
||||
|
Reference in New Issue
Block a user