[Vuejs]-My vuejs applications step function stops just before submit

0👍

The issue is which you mentioned in comment is: Error: On following this link saying get method is not supported for this route. Methos allowed is post

The solution of this issue is.

Run these two commands in your Laravel project

php artisan optimize:clear

composer dump:autoload

This will fix the route method type issue.

Leave a comment