FilamentF
Filament10mo ago
Stevee

Default at select fields not work

somehow at v3 the default at select field not work

as simple as
Select::make('status')
    ->options([
        'draft' => 'Draft',
        'reviewing' => 'Reviewing',
        'published' => 'Published',
    ])
    ->default('draft')


it still show "select an option"
image.png
Solution
did you add
$this->form->fill()
to the mount method?
Was this page helpful?