Repeater::make('questions')
->relationship('questions')
->schema([
TextInput::make('answer')
->required(),
])
->itemLabel(fn (array $state): ?string => $state['question'] ?? 'SHOULD NEVER REACH HERE'),
Repeater::make('questions')
->relationship('questions')
->schema([
TextInput::make('answer')
->required(),
])
->itemLabel(fn (array $state): ?string => $state['question'] ?? 'SHOULD NEVER REACH HERE'),