Order of Clusters in Navigation

Does anyone know of a way to sort Panel Builder Clusters in the navigation menu is a specific order? Similar to
protected static ?int $navigationSort = 1;

in a Resource class.
Solution
Would you believe it! This works:
<?php

namespace App\Filament\Clusters;

use Filament\Clusters\Cluster;

class Settings extends Cluster
{
    protected static ?string $navigationIcon = 'heroicon-o-cog-8-tooth';
    protected static ?int $navigationSort = 1;
}
Was this page helpful?