欢迎光临
我们一直在努力

Laravel的Route::auth()包含哪些路由?

我们经常看到在路由里写着一行

Route::auth()

他究竟起什么作用呢,我们看一下,他的具体内容如下:

@see Illuminate\Routing\Router.php
public function auth()
{
    // Authentication Routes...
    $this->get('login', 'Auth\AuthController@showLoginForm');
    $this->post('login', 'Auth\AuthController@login');
    $this->get('logout', 'Auth\AuthController@logout');

    // Registration Routes...
    $this->get('register', 'Auth\AuthController@showRegistrationForm');
    $this->post('register', 'Auth\AuthController@register');

    // 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');
}

即通过Route::auth()我们即可以实现以上路由。

赞(0)
版权归原作者所有,如有侵权请告知。达维营-前端网 » Laravel的Route::auth()包含哪些路由?

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址