mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Mentioned wrong amount.
This commit is contained in:
parent
4af9ff49a0
commit
7d32e50f25
@ -25,15 +25,15 @@
|
||||
<a href="{{route('transactions.show',$entry->id)}}" title="{{{$entry->description}}}">{{{$entry->description}}}</a>
|
||||
</td>
|
||||
<td>
|
||||
<?php $tableSum += floatval($entry->amount);?>
|
||||
<?php $tableSum += floatval($entry->queryAmount);?>
|
||||
@if($entry->type == 'Withdrawal')
|
||||
<span class="text-danger">{{Amount::format($entry->amount,false)}}</span>
|
||||
<span class="text-danger">{{Amount::format($entry->queryAmount,false)}}</span>
|
||||
@endif
|
||||
@if($entry->type == 'Deposit')
|
||||
<span class="text-success">{{Amount::format($entry->amount,false)}}</span>
|
||||
<span class="text-success">{{Amount::format($entry->queryAmount,false)}}</span>
|
||||
@endif
|
||||
@if($entry->type == 'Transfer')
|
||||
<span class="text-info">{{Amount::format($entry->amount,false)}}</span>
|
||||
<span class="text-info">{{Amount::format($entry->queryAmount,false)}}</span>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
|
Loading…
Reference in New Issue
Block a user