How to disable registration new users in Laravel

后端 未结 27 2937
鱼传尺愫
鱼传尺愫 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:17

    I had to use:

    public function getRegister()
    {
        return redirect('/');
    }
    

    Using Redirect::to() gave me an error:

    Class 'App\Http\Controllers\Auth\Redirect' not found
    

提交回复
热议问题