MethodNotAllowedHttpException

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);
}

10-04 15:06