$blocks->sort()
Sorts the elements by any number of fields
$blocks->sort(string|callable $field, string|null $direction, int|null $method): Kirby\Cms\BlocksParameters
| Name | Type | Default | Description | 
|---|---|---|---|
| $fieldrequired | stringorcallable | no default value | Field name or value callback to sort by | 
| $direction | stringornull | no default value | asc or desc | 
| $method | intornull | no default value | The sort flag, SORT_REGULAR, SORT_NUMERIC etc. | 
Return types
This method does not modify the existing $blocks object but returns a new object with the changes applied. Learn more →
Parent class
	Kirby\Cms\Blocks
		inherited from Kirby\Toolkit\Collection	
Examples
$collection->sort('fieldName');
$collection->sort('fieldName', 'desc');
$collection->sort('fieldName', 'asc', SORT_REGULAR);
$collection->sort(fn ($a) => ...);