mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
Update month.blade.php
Add decryption routine.
This commit is contained in:
parent
6001180e29
commit
0096f50cde
@ -10,7 +10,11 @@
|
|||||||
@foreach($income as $entry)
|
@foreach($income as $entry)
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
@if($entry->encrypted == 1)
|
||||||
|
<a href="{{route('transactions.show',$entry->id)}}" title="{{{Crypt::decrypt($entry->description)}}}">{{{Crypt::decrypt($entry->description)}}}</a>
|
||||||
|
@else
|
||||||
<a href="{{route('transactions.show',$entry->id)}}" title="{{{$entry->description}}}">{{{$entry->description}}}</a>
|
<a href="{{route('transactions.show',$entry->id)}}" title="{{{$entry->description}}}">{{{$entry->description}}}</a>
|
||||||
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?php $tableSum += floatval($entry->amount);?>
|
<?php $tableSum += floatval($entry->amount);?>
|
||||||
|
Loading…
Reference in New Issue
Block a user