Adds the DashboardController

This commit is contained in:
James Brooks
2014-11-24 15:30:03 +00:00
parent e440a04ca0
commit f5765be597
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
/**
* AKA the Management Panel.
*/
class DashboardController extends Controller {
public function showDashboard() {
return 'Coming soon...';
}
}

View File

@@ -9,3 +9,7 @@
Route::post('/setup', 'SetupController@setupCachet');
});
});
Route::group(['before' => 'auth'], function() {
Route::get('/dashboard', 'DashboardController@showDashboard');
});