Код: Выделить всё
$paginator = User::query()->orderBy('id')->cursorPaginate(2);
while ($paginator->hasPages()) {
foreach ($paginator->items() as $item) {
$this->info($item->id);
}
$paginator = $paginator->nextCursor();
}
Подробнее здесь: https://stackoverflow.com/questions/689 ... le-command
Мобильная версия