运行PHP artisan后make:auth所有必需的路由都在route.PHP文件中,但是有可能删除一个(我想删除注册路由)?
目前我有
Route::group(['middleware' => 'web'],function () { Route::auth(); });
我知道Route :: auth()是添加所有路由的快捷方式.
我应该自己指定路线而不是使用快捷方式吗?
不幸的是,你不能排除注册与当前的
原文链接:https://www.f2er.com/laravel/135169.htmlRoute::auth()
实现.
您必须手动指定所有路由
// Authentication Routes... $this->get('login','Auth\AuthController@showLoginForm'); $this->post('login','Auth\AuthController@login'); $this->get('logout','Auth\AuthController@logout'); // Password Reset Routes... $this->get('password/reset/{token?}','Auth\PasswordController@showResetForm'); $this->post('password/email','Auth\PasswordController@sendResetLinkEmail'); $this->post('password/reset','Auth\PasswordController@reset');
我认为这是一个相当普遍的事情,想要这样做会很好,如果auth方法有一个参数说没有寄存器也许你可以向项目提交拉动请求.