[Vuejs]-What is the best way to make a post page with comments. Laravel – vue.js – inertia-vue

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 with php 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

Leave a comment