Introduce the settings dashboard page

This commit is contained in:
James Brooks
2014-12-04 22:50:58 +00:00
parent f886341964
commit bf0a5a296e
3 changed files with 30 additions and 2 deletions

View File

@@ -8,4 +8,10 @@ class DashboardController extends Controller {
public function showDashboard() {
return View::make('dashboard.index');
}
public function showSettings() {
return View::make('dashboard.settings')->with([
'pageTitle' => 'Settings - Dashboard'
]);
}
}