diff --git a/resources/views/reports/month.blade.php b/resources/views/reports/month.blade.php
index b31f8fc0d7..c9cef65b18 100644
--- a/resources/views/reports/month.blade.php
+++ b/resources/views/reports/month.blade.php
@@ -1,6 +1,6 @@
@extends('layouts.default')
@section('content')
-{{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $date) }}
+{!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $date) !!}
@@ -10,11 +10,11 @@
@foreach($income as $entry)
- @if($entry->encrypted == 1)
- {{{Crypt::decrypt($entry->description)}}}
- @else
- {{{$entry->description}}}
- @endif
+ @if($entry->encrypted === true)
+ {{{Crypt::decrypt($entry->description)}}}
+ @else
+ {{{$entry->description}}}
+ @endif
|
amount);?>
@@ -39,7 +39,7 @@
@if(isset($displaySum) && $displaySum === true)
|
Sum |
- {{Amount::format($tableSum)}} |
+ {!! Amount::format($tableSum) !!} |
@endif
@@ -59,12 +59,12 @@
@else
{{{$expense['name']}}} |
@endif
-
{{Amount::format($expense['amount'])}} |
+
{!! Amount::format($expense['amount']) !!} |
@endforeach
Sum |
- {{Amount::format($sum)}} |
+ {!! Amount::format($sum) !!} |
@@ -81,15 +81,15 @@
In |
- {{Amount::format($in)}} |
+ {!! Amount::format($in) !!} |
Out |
- {{Amount::format($sum)}} |
+ {!! Amount::format($sum) !!} |
Difference |
- {{Amount::format($in - $sum)}} |
+ {!! Amount::format($in - $sum) !!} |
@@ -125,16 +125,16 @@
{{{$budget['name']}}}
@endif
-
{{Amount::format($budget['amount'])}} |
-
{{Amount::format($budget['spent'],false)}} |
-
{{Amount::format($budget['amount'] + $budget['spent'])}} |
+
{!! Amount::format($budget['amount']) !!} |
+
{!! Amount::format($budget['spent'],false) !!} |
+
{!! Amount::format($budget['amount'] + $budget['spent']) !!} |
@endforeach
Sum |
- {{Amount::format($sumEnvelope)}} |
- {{Amount::format($sumSpent)}} |
- {{Amount::format($sumLeft)}} |
+ {!! Amount::format($sumEnvelope) !!} |
+ {!! Amount::format($sumSpent) !!} |
+ {!! Amount::format($sumLeft) !!} |
@@ -158,12 +158,12 @@
{{{$category['name']}}}
@endif
- {{Amount::format($category['amount'],false)}} |
+ {!! Amount::format($category['amount'],false) !!} |
@endforeach
Sum |
- {{Amount::format($sum)}} |
+ {!! Amount::format($sum) !!} |
@@ -187,16 +187,16 @@
?>
{{{$account['name']}}} |
- {{Amount::format($account['startBalance'])}} |
- {{Amount::format($account['endBalance'])}} |
- {{Amount::format($account['difference'])}} |
+ {!! Amount::format($account['startBalance']) !!} |
+ {!! Amount::format($account['endBalance']) !!} |
+ {!! Amount::format($account['difference']) !!} |
@endforeach
Sum |
- {{Amount::format($sumStart)}} |
- {{Amount::format($sumEnd)}} |
- {{Amount::format($sumDiff)}} |
+ {!! Amount::format($sumStart) !!} |
+ {!! Amount::format($sumEnd) !!} |
+ {!! Amount::format($sumDiff) !!} |