Laravel Pagination links add including other GET parameters
Опис:
We have url http://localhost.loc/posts?query=test
needs url http://localhost.loc/posts?query=test&page=2
Add to objects $posts:
$posts->appends(Input::except('page'));
example:
if(!is_null($query)) { $posts = Test::where('body', 'like' , '%' . $query . '%') ->orWhere('title', 'like', '%' . $query . '%') ->where('published_at', '<=', $start) ->orderBy('published_at', 'asc') ->paginate(20); $filter = 'all'; $posts->appends(Input::except('page')); }