Collection forPage(int $page, int $perPage) "Paginate" the collection by slicing it into a smaller collection. Parameters int $page int $perPage Return Value Collection
$this forget(string|array $keys) Remove an item from the collection by key. Parameters string|array $keys Return Value $this
Collection flip() Flip the items in the collection. Return Value Collection
mixed get(mixed $key, mixed $default = null) Get an item from the collection by key. Parameters mixed $key mixed $default Return Value mixed
Collection flatMap(callable $callback) Map a collection and flatten the result by a single level. Parameters callable $callback Return Value Collection
Collection flatten(int $depth = INF) Get a flattened array of the items in the collection. Parameters int $depth Return Value Collection
mixed first(callable $callback = null, mixed $default = null) Get the first item from the collection. Parameters callable $callback mixed $default Return Value mixed
Collection except(mixed $keys) Get all items except for those with the specified keys. Parameters mixed $keys Return Value Collection
$this each(callable $callback) Execute a callback over each item. Parameters callable $callback Return Value $this
Collection filter(callable $callback = null) Run a filter over each of the items. Parameters callable $callback Return Value Collection
Page 159 of 996