0๐
- VueJS is frontend framework so you are not able to use it to manipulate DB.
- Create 2 routes with actions e.g.
/api/vote/up/{id}
and/api/vote/down/{id}
- In your component you need some
id
of your item (article,review etc?).
4.Use e.g. Axios to create getrequests like `Vue.axios.get(โ/api/vote/down/โ+ this.objectID). - Utilize Laravel to handle up/down voting
Source:stackexchange.com