Default select not being selected

I want to select fields of a select by default

I do this:
Select::make('status')
    ->options([
        'draft' => 'Draft',
        'reviewing' => 'Reviewing',
        'published' => 'Published',
    ])
    ->default('draft')
    ->multiple()

And i get this:
Screenshot_2023-10-05_at_10.08.52.png
Was this page helpful?