想让 laravel 做单用户登录,禁止掉注册功能
在 RegisterController
添加以下方法
public function showRegistrationForm() { return redirect('login'); }