redirect(); } public function handleLoginGoogleCalback() { $googleUser = Socialite::driver('google')->stateless()->user(); $user = User::where('email', $googleUser->email)->first(); if (!$user) { $user = User::create(['name' => $googleUser->name, 'email' => $googleUser->email, 'password' => Hash::make(rand(100000, 999999)), 'image' => $googleUser->getAvatar(), 'is_google_account' => true]); } Auth::login($user); return redirect()->route('dashboard.index')->with('success', 'login berhasil'); } public function logout() { Auth::logout(); return redirect()->to('/')->with('success', 'berhasil logout'); } public function loginPost(Request $request) { $validated = $request->validate( [ 'email' => 'required|email', 'password' => 'required' ] ); $isLogin = Auth::attempt($validated); if ($isLogin) { return redirect()->route('dashboard.index')->with('success', 'berhasil login!'); } else { return redirect()->back()->with('error', 'Ops, harap check email atau password anda'); } } }