📜  laravel 集合 forPage - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:51.347000             🧑  作者: Mango

代码示例1
$collection = collect([1, 2, 3, 4, 5, 6, 7, 8, 9]);

$chunk = $collection->forPage(2, 3);

$chunk->all();

// [4, 5, 6]