How can I set a default value for a Select field in a Filament form when editing a record?

```
Why is the default value not being set for a multi-select (Select::make()->multiple()) field in Filament, and how can I fix it?

SelectColumn::make('status')
->options([
'draft' => 'Draft',
'reviewing' => 'Reviewing',
'published' => 'Published',
])->default('draft')
Was this page helpful?