Add a debug view.

This commit is contained in:
James Cole
2017-11-01 20:23:28 +01:00
parent b4c2631ef7
commit 6a91ca0f9b
4 changed files with 43 additions and 26 deletions

View File

@@ -48,6 +48,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');
}
);