The Goal | Laravel Paginator Pretty URLs
When use the paginator in Laravel, we get URLs like this: 1 http://localhost:8000/users?page=1 and we want URLs like this 1 http://localhost:8000/users/page/1 because why not? When digging through the code for the paginator class, I found that the...