php – Laravel 5 – 如何处理MethodNotAllowedHttpException

前端之家收集整理的这篇文章主要介绍了php – Laravel 5 – 如何处理MethodNotAllowedHttpException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Laravel 5中我在哪里捕获MethodNotAllowedHttpException异常.在laravel 4中我可以在start / global.PHP中执行此操作
// Exceptions/Handler.PHP

use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;

public function render($request,\Exception $e)
{
    if ($e instanceof MethodNotAllowedHttpException) {
        // …
    }

    return parent::render($request,$e);
}
原文链接:https://www.f2er.com/laravel/135819.html

猜你在找的Laravel相关文章