Is this possible in Laravel Pagination
Working with pagination in Laravel and I was wondering if ?page=N can be customized in any way. I dont want the query string to be included in my URI.
Thanks. Went through the package but I see it still add "page" to the URI. Can't I get something like:
example.com/blog/2
But with the package I will get:
example.com/blog/page/2
instead of:
example.com/blog/2
I want to remove "page" totally.
Unfortunately I do not know how to achieve that in Laravel
@mezie Why? Pagination is manipulating a resource. They are not “pages” unto themselves. This is what query strings are for.
@martinbean I understand, am just looking for a work around of what am trying to achieve.
Please or to participate in this conversation.