我使用laravel 5.6

我想禁用新用户注册,当然登录表单必须可用

我看到以下问题:

https://stackoverflow.com/questions/29183348/how-to-disable-registration-new-user-in-laravel-5


但是我没有在以下路径上找到‍ showRegistrationForm()函数:

Auth/RegisterController.php

最佳答案

在routes / web.php中执行:

Auth::routes(['register' => false]);

这个对我有用。

10-07 15:38