Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Laravel 5 - How do I handle MethodNotAllowedHttpException

Where can I catch a MethodNotAllowedHttpException in Laravel 5+?

In Laravel 4 I was able to do this in start/global.php.

like image 977
Salal Aslam Avatar asked May 16 '15 13:05

Salal Aslam


2 Answers

// Exceptions/Handler.php

use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;

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

    return parent::render($request, $e);
}
like image 191
Limon Monte Avatar answered Nov 12 '22 12:11

Limon Monte


In Laravel 5.4, I did it like this:

File location: app/Exceptions/Handler.php

Add this code at the top of the file:

use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;

And modify the method code as belows:

/**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $exception
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $exception)
    {
        if ($exception instanceof MethodNotAllowedHttpException) 
        {
            return response()->json( [
                                        'success' => 0,
                                        'message' => 'Method is not allowed for the requested route',
                                    ], 405 );
        }

        return parent::render($request, $exception);
    }
like image 18
Rahul Gupta Avatar answered Nov 12 '22 11:11

Rahul Gupta