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
in a Resource class.
in a Resource class.
protected static ?int $navigationSort = 1;<?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;
}