мне урл http://test.loc/api/v1/search?page=1
Как мне сделать так, чтобы он отдавал ссылку с доп параметром? Вида http://test.loc/api/v1/search?page=1¶m=2
Или просто повторял все get параметры из текущего урл
если нажимаешь на param1, то через a[href="{{ route... }}" передаешь на сколько страниц того или инного параметра
$users = User::where('votes', '>', 100)->get(); $page = Input::get('page', 1); // Get the ?page=1 from the url $perPage = 15; // Number of items per page $offset = ($page * $perPage) - $perPage; return new LengthAwarePaginator( array_slice($users->toArray(), $offset, $perPage, true), // Only grab the items we need count($users), // Total items $perPage, // Items per page $page, // Current page ['path' => $request->url(), 'query' => $request->query()] // We need this so we can keep all old query parameters from the url );
он по дефолту помоему и так передает все, что есть в реквесте
Обсуждают сегодня