Laravel 5 Auth Logout not destroying session

前端 未结 12 1666
忘掉有多难
忘掉有多难 2021-01-04 00:10

I am using Laravel5 Auth system for my new project, I am able to use registration and login functions with out any problem but logout is not working as expected, however I g

12条回答
  •  爱一瞬间的悲伤
    2021-01-04 00:21

    By accepting the request object in a controller action (Remember to add this after the controller namespace declaration: use Auth; ):

     /**
     *
     * Render page
     *
     * @route POST /user/{user_id}/logout
     *
     * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
     */
    public function logout(Request $request) {
        Auth::logout();
        $request->session()->flush();
    }
    

提交回复
热议问题