Enum is cast when creating but not editing
I have the following model (simplified)
and the following form resource
In the above example, when I create a new
Config
, the $get('config_type')
call returns and ConfigType
enum as expected
However, when I edit the resource, the same call returns a string
(with the value of the enum) instead of an enum object as expected.
Am I doing something wrong or is this just how filament works?3 Replies
This code defaults to an Object , but I think it sets a Key if selected.
PAss in the options too, what happens then? i.e.
->options(RiskGrade::class)
->enum(RiskGrade::class),