Make it easier to switch between v1/v2 layout.

This commit is contained in:
James Cole
2021-01-31 20:35:54 +01:00
parent fd8a59924d
commit ffe18c63a5
88 changed files with 176 additions and 176 deletions

View File

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