Move debug to new controller, add some fields.

This commit is contained in:
James Cole
2018-01-01 15:33:24 +01:00
parent 4773021ff0
commit 0455f8658d
4 changed files with 64 additions and 13 deletions

View File

@@ -58,7 +58,7 @@ Route::group(
Route::any('logout', ['uses' => 'Auth\LoginController@logout', 'as' => 'logout']);
Route::get('flush', ['uses' => 'HomeController@flush', 'as' => 'flush']);
Route::get('routes', ['uses' => 'HomeController@routes', 'as' => 'routes']);
Route::get('debug', 'HomeController@displayDebug')->name('debug');
Route::get('debug', 'DebugController@index')->name('debug');
}
);