zoukankan      html  css  js  c++  java
  • laravel多表登录出现路由调用错误

    public function auth()
        {
            // Authentication Routes...
            $this->get('login', 'AuthLoginController@showLoginForm')->name('login');
            $this->post('login', 'AuthLoginController@login');
            $this->post('logout', 'AuthLoginController@logout')->name('logout');
    
            // Registration Routes...
            $this->get('register', 'AuthRegisterController@showRegistrationForm')->name('register');
            $this->post('register', 'AuthRegisterController@register');
    
            // Password Reset Routes...
            $this->get('password/reset', 'AuthForgotPasswordController@showLinkRequestForm')->name('password.request');
            $this->post('password/email', 'AuthForgotPasswordController@sendResetLinkEmail')->name('password.email');
            $this->get('password/reset/{token}', 'AuthResetPasswordController@showResetForm')->name('password.reset');
            $this->post('password/reset', 'AuthResetPasswordController@reset');
        }
    

    文件存在于: D:phpstudyPHPTutorialWWWlaravellogvendorlaravelframeworksrcIlluminateRoutingRouter.php

  • 相关阅读:
    渣渣的python的上路
    【tyvj 2038】诡异的数学题
    codeforces_733_A
    NOIP2011 选择客栈
    NOIP 2012 同余方程
    灵渊(seals.cpp/c/pas)
    NOIP 2012 开车旅行
    Mybatis初步详细配置
    SpringMVC之编程式校验
    Spring整合MyBaytis
  • 原文地址:https://www.cnblogs.com/lxwphp/p/9411536.html
Copyright © 2011-2022 走看看