You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
in html forms, most browsers can't handle DELETE, PUT or PATCH as request method.
Laravel has a feature that if there's a POST request with a hidden field named _method, it overrides the real method.
this would require an additional check for $_POST["_method"]
I'd really appreciate if a feature like this could be implemented, so this logic doesn't have to be implemented in each controller
Thanks in advance,
Moritz
The text was updated successfully, but these errors were encountered:
Hello,
in html forms, most browsers can't handle DELETE, PUT or PATCH as request method.
Laravel has a feature that if there's a POST request with a hidden field named
_method
, it overrides the real method.this would require an additional check for
$_POST["_method"]
I'd really appreciate if a feature like this could be implemented, so this logic doesn't have to be implemented in each controller
Thanks in advance,
Moritz
The text was updated successfully, but these errors were encountered: