-
Notifications
You must be signed in to change notification settings - Fork 11.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[11.x] Adding the withQueryString method to the paginate and simplePaginate interfaces. #54460
Conversation
…interfaces - According to the documentation, `paginate` has a `withQueryString` method. - See, https://laravel.com/docs/11.x/pagination#appending-query-string-values - Not only `cursorPaginate`, but also `paginate` and `simplePaginate` should implement `withQueryString` and work with it.
92e792b
to
f2365d7
Compare
This is a breaking change |
Please send this to |
Is this really a compatibility breaking change? The They are just added to the interface. |
Any custom implementation of Paginator interface that doesn't implement |
- According to the documentation, `paginate` has a `withQueryString` method. - See, https://laravel.com/docs/pagination#appending-query-string-values - Not only `cursorPaginate`, but also `paginate` and `simplePaginate` should implement `withQueryString` and work with it. ref: laravel#54460
- According to the documentation, `paginate` has a `withQueryString` method. - See, https://laravel.com/docs/pagination#appending-query-string-values - Not only `cursorPaginate`, but also `paginate` and `simplePaginate` should implement `withQueryString` and work with it. ref: laravel#54460
- According to the documentation, `paginate` has a `withQueryString` method. - See, https://laravel.com/docs/pagination#appending-query-string-values - Not only `cursorPaginate`, but also `paginate` and `simplePaginate` should implement `withQueryString` and work with it. ref: #54460
- According to the documentation, `paginate` has a `withQueryString` method. - See, https://laravel.com/docs/pagination#appending-query-string-values - Not only `cursorPaginate`, but also `paginate` and `simplePaginate` should implement `withQueryString` and work with it. ref: laravel/framework#54460
Adding the withQueryString method to the paginate and simplePaginate interfaces.
paginate
has awithQueryString
method.cursorPaginate
, but alsopaginate
andsimplePaginate
should implementwithQueryString
and work with it.