© 2026 Hedgehog Software, LLC
enum Status: string implements HasLabel { case DRAFT = 'My draft label'; public function getLabel(): ?string { return $this->name; } }
Select::make('status') ->options(Status::class)
<option value="My draft label">My draft label</option>
<option value="DRAFT">My draft label</option>