最赞回答 / weixia
laravel 5.4 也遇到这个问题 ,找到最后发现是 中间件 文件kernel.php。的 protected $middlewareGroups = [】// \App\Http\Middleware\VerifyCsrfToken::class, 这个 中间件 注释掉。就可以了!
2017-04-02
最赞回答 / 就不告诉你啦
这个是因为laravel默认开启了Csrf验证,只需要在代码form中添加一个隐藏的input即可,添加代码如下<...code...>你可以试试,一定要添加在form标签内部。<...图片...>
2017-04-02
已采纳回答 / zqbinary
http://www.golaravel.com/post/a-brief-introduction-to-php-namespacing/ 你问的太泛, 我当时要在laravel 5.2 这里的需求我要引入一个地址类1. vendor/Shipping/AliShipping.php......有需要我把具体过程给你
2017-03-17
已采纳回答 / dds813
if(isset($errors)){ return redirect()->back()->withError($validator)->withInput(); }
2017-03-16