I am using Eloquent together with Laravel 4\'s Pagination class.
Problem: When there are some GET parameters in the URL, eg: http://site.com/u
Be aware of the Input::all() , it will Include the previous ?page= values again and again in each page you open !
for example if you are in ?page=1 and you open the next page, it will open ?page=1&page=2
So the last value page takes will be the page you see ! not the page you want to see
Solution : use Input::except(array('page'))