SetKyarWaLar's avatar

How do I get previous pagination data in Laravel?

I try something like that

User::paginate(10);

And when I click 2 via my view it's go /?page=2 and it's just show after record 10. How do I get previous pagination data?

0 likes
4 replies
RachidLaasri's avatar

The problem is in the "/" if you removed it and browse to /users?page=2 it'll work.

I faced this problem once, and what i did is a string replace on the render method.

1 like
SetKyarWaLar's avatar

What I want to do is I have an user table and I want user able to show by 10 records 20 records 30 records etc. Something like from Datatable

  • Show 10 entries
  • Show 20 entries
  • Show 30 entries

with select.

Please or to participate in this conversation.