How to convert URL query string into URL parameters in Laravel?
I have a form that sends a get request to a /player/ route. When I click the submit button, the URL looks something like this: https://examle.com/player?username=johndoe I want the URL to look like this: https://examle.com/player/johndoe The username will then be…