How to disable registration new users in Laravel

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

    In routes.php, just add the following:

    if (!env('ALLOW_REGISTRATION', false)) {
        Route::any('/register', function() {
            abort(403);
        });
    }
    

    Then you can selectively control whether registration is allowed or not in you .env file.

提交回复
热议问题