@afoysal do you want to find which laravel controller is associated with /component/list/revision?
You can see your route list with php artisan route:list.
Oct 25, 2022
3
Level 8
Find Laravel route
I have below VueJS code.
import axios from '@axios'
export default {
namespaced: true,
state: {},
getters: {},
mutations: {},
actions: {
fetchUsers(ctx, queryParams) {
return new Promise((resolve, reject) => {
axios
.get('/component/list/revision', {
headers: {
'Content-Type': 'multipart/form-data'
}
, params: queryParams
})
.then(response => resolve(response))
.catch(error => reject(error))
})
},
},
}
How can I find which Laravel route is associated with /component/list/revision VueJS route ?
Please or to participate in this conversation.
