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