mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Update month.blade.php
Add decryption routine.
This commit is contained in:
@@ -10,7 +10,11 @@
|
||||
@foreach($income as $entry)
|
||||
<tr>
|
||||
<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>
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
<?php $tableSum += floatval($entry->amount);?>
|
||||
|
Reference in New Issue
Block a user