Skip to content

Commit

Permalink
fix missing user class error
Browse files Browse the repository at this point in the history
  • Loading branch information
tbirrell committed Mar 23, 2021
1 parent cec5a07 commit 9ae8c6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
use App\Http\Controllers\FaqController;
use App\Http\Controllers\HouseguestController;
use App\Http\Controllers\ProfileController;
use App\Http\Controllers\Auth\LoginController;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;

Auth::routes(['verify' => true]);
Route::get('login/{provider}', 'Auth\LoginController@redirectToProvider');
Route::get('login/{provider}/callback', 'Auth\LoginController@handleProviderCallback');
Route::get('login/{provider}', [LoginController::class, 'redirectToProvider']);
Route::get('login/{provider}/callback', [LoginController::class, 'handleProviderCallback']);

//=== LEGAL ===//
Route::get('/privacy', [LegalController::class, 'privacy']);
Expand Down

0 comments on commit 9ae8c6a

Please sign in to comment.