如果使用过5.2的php artisan make:auth,在使用5.3的时候会发现Logout的使用和以前不一样。
5.3之前:$this->get('logout', 'Auth\AuthController@logout');
5.3:$this->post('logout', 'Auth\LoginController@logout')->name('logout');
对应的,前台也变成了:
get→post的变化。
如果使用过5.2的php artisan make:auth,在使用5.3的时候会发现Logout的使用和以前不一样。
5.3之前:$this->get('logout', 'Auth\AuthController@logout');
5.3:$this->post('logout', 'Auth\LoginController@logout')->name('logout');
对应的,前台也变成了:
get→post的变化。