How to disable registration new users in Laravel

后端 未结 27 2853
鱼传尺愫
鱼传尺愫 2020-12-07 10:34

I\'m using Laravel (v5).

I need one user and I\'ve already registered that. Now I want to disable registration for new users. Of course, I need the login form to wor

27条回答
  •  伪装坚强ぢ
    2020-12-07 11:21

    In Laravel 5.5 is very simple, if you are using CRUD route system.

    Go to app/http/controllers/RegisterController there is namespace: Illuminate\Foundation\Auth\RegistersUser

    You need to go to the RegistersUser: Illuminate\Foundation\Auth\RegistersUser

    There is the method call showRegistrationForm change this: return view('auth.login'); for this: return redirect()->route('auth.login'); and remove from you blade page route call register. It may look like that:

     
  • Register
提交回复
热议问题