我在哪里可以在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);
}