Let's say I'm paginating a list of items, and want to filter them by the first letter, my URL would be something like myURL.com/items?sortBy=C&page=2, this would return me the page 2 of the items that start with C. (Pagination is already working)
My question is, how do I retrieve the sortBy=C? And how the routes.php, and the controller would look like?