Fix "The GET method for this route is not supported. Supported methods: POST" error
P粉044526217
2023-08-08 20:23:40
<p>The GET method for this route is not supported. Supported methods: POST. <br /><br />php artisan route:cache php artisan route:clear How long does it take to execute this command? I need a solution to this error<br /><br />I need a solution to this error</p><p><br /></p>
When you use a GET type route in the routes/web.php file, in the form using the method type "POST", it will appear an error of "GET method not supported", because the front-end submission type and There is a conflict between route types.
Try converting your routes in routes/web.php:
Then