We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, I love this package so much, it does not play nice with pagination options like withQueryString()
The text was updated successfully, but these errors were encountered:
This worked as a temporary solution
$data = new \Illuminate\Pagination\LengthAwarePaginator( $data->getCollection(), $data->total(), $data->perPage(), $data->currentPage(), [ 'path' => request()->url(), 'query' => $request->query() ] );
where $data is the result from Search::new()->add(...
Sorry, something went wrong.
I Think this is the same Issue as this one posted to the Laravel-Ide-Helper Project.
barryvdh/laravel-ide-helper#1144
I don't understand the problem. Could you give an example so I can reproduce the problem?
This solution worked for me:
$results->appends($request->query());
Here is a link to the documentation: https://laravel.com/docs/9.x/pagination#appending-query-string-values.
No branches or pull requests
Hello, I love this package so much, it does not play nice with pagination options like withQueryString()
The text was updated successfully, but these errors were encountered: