chunkById() публичный Метод

Chunk the results of a query by comparing numeric IDs.
public chunkById ( integer $count, callable $callback, string $column = 'id' ) : boolean
$count integer
$callback callable
$column string
Результат boolean
Пример #1
0
 /**
  * Chunk the results of a query by comparing numeric IDs.
  *
  * @param int $count
  * @param callable $callback
  * @param string $column
  * @return bool 
  * @static 
  */
 public static function chunkById($count, $callback, $column = 'id')
 {
     return \Illuminate\Database\Eloquent\Builder::chunkById($count, $callback, $column);
 }