Select::make('data.qa1')
->label('qa1')
->options([
'a1' => 'a1',
'a2' => 'a2',
'a3' => 'a3',
])
->live()
->afterStateUpdated(function (Get $get, Component $component, ?string $state) {
echo $state;
}),
Select::make('data.qa1')
->label('qa1')
->options([
'a1' => 'a1',
'a2' => 'a2',
'a3' => 'a3',
])
->live()
->afterStateUpdated(function (Get $get, Component $component, ?string $state) {
echo $state;
}),