0๐
As far as i understand you, you have a bunch of routes and you need their URLs, right? If that is the case you can access it with some helpers methods built in laravel, and i can see that you want it with query strings etc.
You can use access them via the request with the fullUrl()
helper, or just the path()
helper if you dont need the query string.
Further reading on this is here:
https://laravel.com/docs/5.6/requests
- [Vuejs]-How to get methods declared in vue inside swiper events
- [Vuejs]-Why does my Vue.js app not run when I use the runtime version of Vue?
Source:stackexchange.com