From: Vincent Vanwaelscappel Date: Mon, 11 Oct 2021 09:43:53 +0000 (+0200) Subject: wip #4765 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=cb5a9766283f456bb0a974367eea23deb9c82b25;p=cubist_socialite.git wip #4765 --- diff --git a/src/Http/Controllers/SocialiteController.php b/src/Http/Controllers/SocialiteController.php index 8224c40..c97272b 100644 --- a/src/Http/Controllers/SocialiteController.php +++ b/src/Http/Controllers/SocialiteController.php @@ -34,10 +34,8 @@ class SocialiteController extends Controller $user = Socialite::driver($provider)->stateless()->user(); $authUser = $this->findOrCreateUser($user, $provider); Auth::login($authUser, true); - dd($authUser); return redirect('/test'); } catch (\Exception $e) { - dd(Socialite::driver($provider)); dd($e); } }