Collection.reverse()

Syntax

collection.reverse()

Return Value

This Collection instance (this)

Remarks

No matter if using sortBy() or natural sort order (orderBy or a where() clause), this method will reverse the sort order of the collection.

If called twice, the sort order will reset to ascending again.

reverse() replaces deprecated the desc() method. Behaviour is equivalent to the desc() method.

Table of Contents