Search controller.

This commit is contained in:
James Cole
2015-02-27 11:09:23 +01:00
parent fc5c339e27
commit 8f578ed95a
11 changed files with 328 additions and 17 deletions

View File

@@ -39,7 +39,7 @@ class PreferencesController extends Controller {
$budgetMax = Preferences::get('budgetMaximum', 1000);
$budgetMaximum = $budgetMax->data;
return View::make('preferences.index', compact('budgetMaximum'))->with('accounts', $accounts)->with('frontPageAccounts', $frontPage)->with(
return view('preferences.index', compact('budgetMaximum'))->with('accounts', $accounts)->with('frontPageAccounts', $frontPage)->with(
'viewRange', $viewRangeValue
);
}