SortedMiddleware::forPage()

Collection forPage(int $page, int $perPage) "Paginate" the collection by slicing it into a smaller collection. Parameters int $page int $perPage Return Value Collection

SortedMiddleware::forget()

$this forget(string|array $keys) Remove an item from the collection by key. Parameters string|array $keys Return Value $this

SortedMiddleware::flip()

Collection flip() Flip the items in the collection. Return Value Collection

SortedMiddleware::get()

mixed get(mixed $key, mixed $default = null) Get an item from the collection by key. Parameters mixed $key mixed $default Return Value mixed

SortedMiddleware::flatMap()

Collection flatMap(callable $callback) Map a collection and flatten the result by a single level. Parameters callable $callback Return Value Collection

SortedMiddleware::flatten()

Collection flatten(int $depth = INF) Get a flattened array of the items in the collection. Parameters int $depth Return Value Collection

SortedMiddleware::first()

mixed first(callable $callback = null, mixed $default = null) Get the first item from the collection. Parameters callable $callback mixed $default Return Value mixed

SortedMiddleware::except()

Collection except(mixed $keys) Get all items except for those with the specified keys. Parameters mixed $keys Return Value Collection

SortedMiddleware::each()

$this each(callable $callback) Execute a callback over each item. Parameters callable $callback Return Value $this

SortedMiddleware::filter()

Collection filter(callable $callback = null) Run a filter over each of the items. Parameters callable $callback Return Value Collection