Adds the DashboardController
This commit is contained in:
10
app/controllers/DashboardController.php
Normal file
10
app/controllers/DashboardController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* AKA the Management Panel.
|
||||
*/
|
||||
class DashboardController extends Controller {
|
||||
public function showDashboard() {
|
||||
return 'Coming soon...';
|
||||
}
|
||||
}
|
||||
@@ -9,3 +9,7 @@
|
||||
Route::post('/setup', 'SetupController@setupCachet');
|
||||
});
|
||||
});
|
||||
|
||||
Route::group(['before' => 'auth'], function() {
|
||||
Route::get('/dashboard', 'DashboardController@showDashboard');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user