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');
        }
  • 相关阅读:
    3.04
    3.03
    3.02
    3.01
    2.27
    2.25小账本6
    2.24小账本5
    2.23小账本4
    2.22小账本3
    git常用命令
  • 原文地址:https://www.cnblogs.com/xiaoxiaff/p/5360604.html
Copyright © 2011-2022 走看看