Radio::make('status')
->options([
0 => 'Open',
1 => 'Closed',
2 => 'Done',
])
->default(0)
->required(),
TextInput::make('other_information')
->numeric()
->visible(fn ($get) => $get('./status') < 1),