mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
This PHP7 thing is strict!
This commit is contained in:
parent
a4e699f781
commit
c3f78b698d
@ -33,7 +33,7 @@ class BudgetLine
|
|||||||
*/
|
*/
|
||||||
public function getBudget(): BudgetModel
|
public function getBudget(): BudgetModel
|
||||||
{
|
{
|
||||||
return $this->budget;
|
return $this->budget ?? new BudgetModel;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
{% for budgetLine in budgets.getBudgetLines %}
|
{% for budgetLine in budgets.getBudgetLines %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{% if budgetLine.getBudget %}
|
{% if budgetLine.getBudget.id %}
|
||||||
<a href="{{ route('budgets.show',budgetLine.getBudget.id) }}">{{ budgetLine.getBudget.name }}</a>
|
<a href="{{ route('budgets.show',budgetLine.getBudget.id) }}">{{ budgetLine.getBudget.name }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<em>{{ 'noBudget'|_ }}</em>
|
<em>{{ 'noBudget'|_ }}</em>
|
||||||
|
Loading…
Reference in New Issue
Block a user