Laravel 5.4 Disable Register Route

前端 未结 13 2311
旧时难觅i
旧时难觅i 2020-12-13 00:09

I am trying to disable the register route on my application which is running in Laravel 5.4.

In my routes file, I have only the

Auth::routes();
         


        
13条回答
  •  半阙折子戏
    2020-12-13 00:28

    Just overwrite your auth showRegistrationForm() method ( place this code inside your Auth/RegisterController )

    public function showRegistrationForm(){
        return redirect()->route('login');
    }
    

    I'm just redirecting my register route to the login route. Here you don't need to append or remove any other code

提交回复
热议问题