1π
To be able to find the issue, you need to debug. I would do the following:
-
In the developer console, check the network tab to inspect the request to see the url and data being send.
-
In the console run
php artisan route:list
to see if all your routes are listed. Also try clearing the cache withphp artisan route:cache
-
Other option could be changing the resource route
Route::resource('comments', 'ReplyController');
for individual routes for each method just to find the problem.
π€Jesus Diaz
- [Vuejs]-How to add content to Vuetify (v-navigation-drawer)
- [Vuejs]-Vuejs data updates but the change does not reflect in template
Source:stackexchange.com