Skip to content

Commit

Permalink
Fixes #2730
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk committed Sep 19, 2017
1 parent c9f7eeb commit b5f6c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/AbstractApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected function paginator(Paginator $paginator, Request $request)
{
foreach ($request->query as $key => $value) {
if ($key != 'page') {
$paginator->addQuery($key, $value);
$paginator->appends($key, $value);
}
}

Expand Down

0 comments on commit b5f6c23

Please sign in to comment.