Code cleanup

This commit is contained in:
Dane Everitt 2018-04-08 16:00:52 -05:00
parent 6d970a4cc3
commit b6e94d9a1e
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 14 additions and 41 deletions

View file

@ -27,6 +27,9 @@ Route::group(['middleware' => 'guest'], function () {
// the forgot password routes to acquire a token (or after an account
// is created).
Route::post('/password/reset', 'ResetPasswordController')->name('auth.reset-password')->middleware('recaptcha');
// Catch any other combinations of routes and pass them off to the Vuejs component.
Route::fallback('LoginController@index');
});
/*