php – 从Laravel身份验证中排除路由

前端之家收集整理的这篇文章主要介绍了php – 从Laravel身份验证中排除路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
运行PHP artisan后make:auth所有必需的路由都在route.PHP文件中,但是有可能删除一个(我想删除注册路由)?

目前我有

Route::group(['middleware' => 'web'],function () {
    Route::auth();
});

我知道Route :: auth()是添加所有路由的快捷方式.
我应该自己指定路线而不是使用快捷方式吗?

不幸的是,你不能排除注册与当前的 Route::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方法有一个参数说没有寄存器也许你可以向项目提交拉动请求.

原文链接:https://www.f2er.com/laravel/135169.html

猜你在找的Laravel相关文章