nova-json icon indicating copy to clipboard operation
nova-json copied to clipboard

The JSON field wrapper allows you to specify multiple fields which will be resolved into a single model attribute. This allows you to validate every information you store inside a json column seperate...

Results 11 nova-json issues
Sort by recently updated
recently updated
newest added

Is it possible to remove/disable buttons "add row" and "delete row" from the form?

Is there a way to use dependent field on `JsonRepeatable`? The documentation only shows to use dependent field on `JsonArray`. I've also found that `SupportsDependentFields` trait is already implemented in...

Great package, thank you for your work! One suggestion - would be great to have a "table" view, so that repeatable fields would be shown in a table view instead...

Hi, In your example code you group fields with Tabs. Which Tabs do you use ? Regards

HI, I have a json format like : `{"type": "'', "default":'', "options": [{name:'xxx', label:'ooo',fee:100},...]}` This json in db table namely data. In nova 4 resource, i have call JsonRepeatable class...

Not a major issue, but would be nice to have it cleaned up, seems like padding is missing for some reason

Hello, This PR add support for arrow notation at chield field level allowing the following kind of structure or more complex: ```json { "emails": [ { "attributes": { "name": "test",...

Hello, I have a feature request which I couldn't find in your README. Would it be possible to add a way to open a set of rows by default? For...

Hello and thanks for this package! I noticed that default attribute allowing to set a default value to a field are ignored when used inside JsonRepeatable: ``` JsonRepeatable::make('Providers', 'providers') ->fullWidth()...

I am trying to use an image field inside the json field but it seems is not working, any ideas? here is my code: `Image::make('Image') ->path('entries/'.$this->model()->hash_id) ->acceptedTypes('image/*') ->storeAs(function ($request) {...