zoukankan      html  css  js  c++  java
  • Router::Auth()

    public function auth()
        {
            // Authentication Routes...
            $this->get('login', 'AuthAuthController@showLoginForm');
            $this->post('login', 'AuthAuthController@login');
            $this->get('logout', 'AuthAuthController@logout');
            // Registration Routes...
            $this->get('register', 'AuthAuthController@showRegistrationForm');
            $this->post('register', 'AuthAuthController@register');
            // Password Reset Routes...
            $this->get('password/reset/{token?}', 'AuthPasswordController@showResetForm');
            $this->post('password/email', 'AuthPasswordController@sendResetLinkEmail');
            $this->post('password/reset', 'AuthPasswordController@reset');
        }
  • 相关阅读:
    TCP之Nagle算法与TCP_NODELAY
    CSPS模拟 87
    CSPS模拟 86
    CSPS模拟 85
    CSPS模拟 84
    CSPS模拟 83
    CSPS模拟 82
    CSPS模拟 81
    CSPS模拟 80
    CSPS模拟 79
  • 原文地址:https://www.cnblogs.com/xiaoxiaff/p/5360604.html
Copyright © 2011-2022 走看看