Comment for setup route

This commit is contained in:
James Brooks
2014-12-18 22:53:18 +00:00
parent 30a8a87cee
commit fff35552c6

View File

@@ -6,6 +6,7 @@ Route::group(['before' => 'has_setting:app_name'], function() {
Route::get('/incident/{incident}', 'HomeController@showIncident');
});
// Setup route.
Route::group(['before' => 'no_setup:app_name'], function() {
Route::controller('/setup', 'SetupController');
});