I have a website where I used pagination . But the url is making pagination url such as
http://website.com/user?page=2
But I want to beautify it as
http://website.com/user/2
I am using laravel 6. how can I make it to do?
I have a website where I used pagination . But the url is making pagination url such as
http://website.com/user?page=2
But I want to beautify it as
http://website.com/user/2
I am using laravel 6. how can I make it to do?
Copyright © 2021 Jogjafile Inc.
Pretty Laravel Pagination
There is no official way to beautify laravel pagination code. So I make my own code and Finally it is working.
Goal
www.website.com/user?page=1 → →→→ www.website.com/user/1
Step1:
In route :
Step2: In MainController:
Step3: In view:
That's all . We successfully made changes the url.