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