I have a model User and it hasMany Types. I have a page where I paginate all users. I also have a box off to the side with checkboxes with all the types in them. How would I filter the paginated content? I am assuming it has something to do with a query scope but I do not know how to apply it properly, and also without messing up the pagination.
Something like mysite.com/users?type=2,3,5,7&page=2 where type is a comma delimited string of the boxes checked.
You can submit data via URL, but I think the confusion with your question is you don't need to from a form. The Request gets your post data for you. Consume it in your query and pass it to the view.