laravel 中禁用掉注册功能

想让 laravel 做单用户登录,禁止掉注册功能

在 RegisterController

添加以下方法

     public function showRegistrationForm()
    {
        return redirect('login');
    }
原文地址:https://www.cnblogs.com/handongyu/p/8946420.html