Is there a way (if not, it would really be helpful in my opinion) for you to provide any URL in your application, and get back the route which will be ultimately called by that URL (or route stack)...maybe even artisan route extension
I have this route on the bottom of my routes, and it should be hit whenever an inexistent route is provided. However, when I use myapp.com/qwerty I get the same response as if I entered only myapp.com. Same goes for myapp.com/ifheruifnjfeibfgfgr
Now I'd like to check out why doesn't my slug route get hit. Something is preventing my request from getting to the slug route, and I'd like to trace it by seeing methods it passes through in the process so that I can see where it gets redirected back to the home route which shouldn't happen