diff --git a/resources/views/reports/budget.blade.php b/resources/views/reports/budget.blade.php index 32aa2d7a34..2db5d76b34 100644 --- a/resources/views/reports/budget.blade.php +++ b/resources/views/reports/budget.blade.php @@ -85,7 +85,11 @@ ?> @if(isset($account->budgetInformation[0])) - {!! Amount::format($account->budgetInformation[0]['amount'] + $account->balancedAmount) !!} + @if($account->budgetInformation[0]['amount'] + $account->balancedAmount != 0.0) + {!! Amount::format($account->budgetInformation[0]['amount'] + $account->balancedAmount) !!} + @else + {!! Amount::format($account->budgetInformation[0]['amount'] + $account->balancedAmount) !!} + @endif @else {!! Amount::format(0) !!}