Default select not being selected
I want to select fields of a select by default
I do this:
And i get this:
I do this:
And i get this:

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