Fieldset / Grid to array/json
Hi,
Right now I'm working on a package that will allow multiple implementable providers. The provider will provide the "details" section (see screenshot). Everything within that details section should become JSON within the database and should be created as array. Is this possible?
5 Replies
cast 'details' to array in the model
and the form input should look like"
TextInput::make('details.client_key')
Right, so the whole fieldset is here completly out of scope for the datapart. Only for grouping it in the UI? And to group the data I should dot notate it
AFAIK yes basically π
Thanks!