A route that displays an error. Seems quite useless, I know

This commit is contained in:
James Cole
2016-02-11 12:49:04 +01:00
parent df45298c1f
commit 8b1fe26c84
2 changed files with 11 additions and 0 deletions

View File

@@ -22,6 +22,10 @@ Route::group(
Route::post('/password/reset', 'Auth\PasswordController@reset');
// display error:
Route::get('/error', 'HomeController@displayError');
}
);