Automatically select some options

I'm building a create form. By default, i want an option of the Select have to be selected, but idk how to achieve it.

example from docs:
use Filament\Forms\Components\Select;
 
Select::make('status')
    ->options([
        'draft' => 'Draft',
        'reviewing' => 'Reviewing',
        'published' => 'Published',
    ])

so let say i want the draft to be selected by default. how to?
Was this page helpful?