Select menu. Enum. How set default-selected

I got a field in DB and model, which is an enum type. Something like this: ['xxx', 'yyy', 'zzz']
In filament, I did:
        return $form
            ->schema([
                Forms\Components\Select::make('stage')
                    ->options(['xxx', 'yyy', 'zzz'])
                    ->default('stage')
                    ->disablePlaceholderSelection()

In the DB, the field stage is already set to yyy. But the menu still displays xxx
Was this page helpful?