Caffeinated\Modules\Repositories\LocalRepository::sortBy PHP Method

sortBy() public method

Sort modules by given key in ascending order.
public sortBy ( string $key ) : Collection
$key string
return Collection
    public function sortBy($key)
    {
        $collection = $this->all();
        return $collection->sortBy($key);
    }