Files
cachet-docker/app/routes/app.php
2014-11-23 21:34:31 +00:00

9 lines
242 B
PHP

<?php
Route::get('/', 'HomeController@showIndex');
Route::get('/incident/{incident}', 'HomeController@showIncident');
Route::group(['before' => 'no_setup:app_name'], function() {
Route::get('/setup', 'SetupController@showSetup');
});