"message": "The POST method is not supported for this route. Supported methods: GET, HEAD.", "exception": "Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException", code example
Example: laravel Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException The GET method is not supported for this route. Supported methods: HEAD.
*/
protected function methodNotAllowed(array $others, $method)
{
throw new MethodNotAllowedHttpException(
$others,
sprintf(
'The %s method is not supported for this route. Supported methods: %s.',