From f5765be597180a3955ea3aac9b006a79d8b8bc9e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 24 Nov 2014 15:30:03 +0000 Subject: [PATCH] Adds the DashboardController --- app/controllers/DashboardController.php | 10 ++++++++++ app/routes/app.php | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 app/controllers/DashboardController.php diff --git a/app/controllers/DashboardController.php b/app/controllers/DashboardController.php new file mode 100644 index 00000000..7ca59c2b --- /dev/null +++ b/app/controllers/DashboardController.php @@ -0,0 +1,10 @@ + 'auth'], function() { + Route::get('/dashboard', 'DashboardController@showDashboard'); + });