1

我有两个不同的查询,我合并以返回一个集合

$combinados = $histMe->merge($hist)->sortByDesc('created_at');

我以这种方式返回它们:

$final = $combinados->all();

但这会打印所有集合,我该如何分页?paginate() laravel方法不适用于集合。我怎样才能从视图中控制它?

谢谢!

4

2 回答 2

1

该 api 在较新的版本中略有变化。要对集合进行分页,您现在需要使用 forPage。

forPage 方法有两个参数:

forPage(int $page, int $perPage)

所以你可以在你的控制器中做这样的事情:

...
public function index(Request $request)
{
    $combinados = $histMe->merge($hist)->sortByDesc('created_at');

    $combinados->forPage($request->get('page'), 25);
}
...
于 2018-11-10T21:14:03.103 回答
1

你可以使用我很久以前写的这段代码:

您必须使用长度感知分页器:

use Illuminate\Pagination\LengthAwarePaginator;


public function paginate($items, $perPage,$setDefaultOption = true, $options = [])
    {
        if($setDefaultOption){
            $options = ['path' => request()->url(), 'query' => request()->query()];
        }
        $page = Input::get('page', 1); // Get the current page or default to 1


        $items = $items instanceof Collection ? $items : Collection::make($items);

        return new LengthAwarePaginator($items->forPage($page, $perPage), $items->count(), $perPage, $page, $options);
    }
于 2018-11-10T20:59:45.607 回答