->steps([
Step::make('type')
->description('Give the category a clear and unique name')
->schema([
Radio::make('type')
->options([
'1' => 'Stage1',
'2' => 'Stage2',])
]),
Step::make('Stage1')
->schema([
Section::make('')
->schema([
TextInput::make('Name')
])->relationship('Stages')]),
Step::make('Stage2')
->schema([
Section::make('')
->schema([
TextInput::make('Name')
])->relationship('Stages')]),
])
->steps([
Step::make('type')
->description('Give the category a clear and unique name')
->schema([
Radio::make('type')
->options([
'1' => 'Stage1',
'2' => 'Stage2',])
]),
Step::make('Stage1')
->schema([
Section::make('')
->schema([
TextInput::make('Name')
])->relationship('Stages')]),
Step::make('Stage2')
->schema([
Section::make('')
->schema([
TextInput::make('Name')
])->relationship('Stages')]),
])