© 2026 Hedgehog Software, LLC
handleRecordCreation
car_type
CarType::class
Forms\Components\Select::make('car_type') ->translateLabel() ->enum(CarType::class) // ->options(CarType::class) ->options(function (Forms\Get $get) { $carType = $get('car_type'); info($carType); //remove $carType from returned CarType::class return CarType::class; }) ->live()