Replies: 2 comments 7 replies
-
I think @ryangjchandler had this idea the other day too! |
Beta Was this translation helpful? Give feedback.
1 reply
-
I was looking for the same functionality, it seems possible by using the Forms\Components\KeyValue::make('api_authentication')
->default(fn($state) => [
"username" => '',
"password" => '',
])
->keyLabel('Type')
->valueLabel('Value')
->disableAddingRows()
->disableDeletingRows()
->disableEditingKeys(),
]), is that a good way to go about it, or are there any weird side effects to be expected @danharrin ? :D |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be great if we could select the keys from predefined options list. example:
Beta Was this translation helpful? Give feedback.
All reactions