Code clean up.

This commit is contained in:
James Cole
2017-11-15 11:33:07 +01:00
parent ef837f20dd
commit 57dcdfa0c4
60 changed files with 398 additions and 347 deletions

View File

@@ -89,7 +89,7 @@ class MonthReportGenerator extends Support implements ReportGeneratorInterface
return view(
'reports.tag.month',
compact(
'accountIds',
'accountIds',
'tagTags',
'reportType',
'accountSummary',
@@ -97,8 +97,8 @@ class MonthReportGenerator extends Support implements ReportGeneratorInterface
'averageExpenses',
'averageIncome',
'topIncome',
'topExpenses'
)
'topExpenses'
)
)->with('start', $this->start)->with('end', $this->end)->with('tags', $this->tags)->with('accounts', $this->accounts)->render();
}