Make it easier to switch between v1/v2 layout.

This commit is contained in:
James Cole
2021-01-31 20:29:17 +01:00
parent 21da959203
commit 27815d0311
5 changed files with 42 additions and 12 deletions

View File

@@ -148,6 +148,6 @@ class HomeController extends Controller
$user = auth()->user();
event(new RequestedVersionCheckStatus($user));
return view('index', compact('count', 'subTitle', 'transactions', 'billCount', 'start', 'end', 'today'));
return prefixView('index', compact('count', 'subTitle', 'transactions', 'billCount', 'start', 'end', 'today'));
}
}