set default value for select

I cannot figure out how to set the default value for a select. I've tried both:

Select::make('status')
    ->options(StatusEnum::class)
    ->default(StatusEnum::DRAFT)


and

Select::make('status')
    ->options(StatusEnum::class)
    ->default(StatusEnum::DRAFT->value)


Neither seems to actually set the default value.
Was this page helpful?