Remove reference to a method no longer used.

This commit is contained in:
James Cole
2022-01-29 14:11:12 +01:00
parent acb2a8697a
commit 003d8ba02a
104 changed files with 219 additions and 256 deletions

View File

@@ -141,7 +141,7 @@ class ReconcileController extends Controller
$reconSum = bcadd(bcadd($startBalance, $amount), $clearedAmount);
try {
$view = prefixView(
$view = view(
'accounts.reconcile.overview',
compact(
'account',
@@ -256,7 +256,7 @@ class ReconcileController extends Controller
$journals = $this->processTransactions($account, $array);
try {
$html = prefixView(
$html = view(
'accounts.reconcile.transactions',
compact('account', 'journals', 'currency', 'start', 'end', 'selectionStart', 'selectionEnd')
)->render();