mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 07:53:16 +00:00
Update month.blade.php
Add decryption routine.
This commit is contained in:
@@ -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);?>
|
||||||
|
Reference in New Issue
Block a user