nova-flexible-content icon indicating copy to clipboard operation
nova-flexible-content copied to clipboard

Flexible Content & Repeater Fields for Laravel Nova

Results 100 nova-flexible-content issues
Sort by recently updated
recently updated
newest added

What's a function I can use when forking Nova flexible field to clear all current rows and start from scratch? (This is for a template extension I'm building so when...

I needed to fix the remove image problem. I had in mind a solution of flattening the fields of the layout in order to let the Deletion Controller do it's...

Hi! I'm trying to get this to work in combination with either `spatie/nova-translatable` or `kongulov/nova-tab-translatable`. I've read possibilities in #7, #33, #39, #44 and #58, but I've been unable to...

So I have a code that cycles through some products ``` foreach($opps as $opp) { ray($opp); $items = array(); ray($opp->products); foreach($opp->products as $product) { $items[] = ['rate' => $product->price, 'productname'...

Currently, casting and displaying the field are independent. It would be beneficial if the field could reuse the defined Layouts from its corresponding FlexibleCast. I'm happy to provide a PR...

Inside the `HasFlexible` trait (which we're using in `FlexibleCast`) we're returning the raw value (string) when in the following context : ```php if(app()->getProvider(NovaServiceProvider::class) && !app()->runningInConsole() && !app()->environment('testing')) { return $value;...

You know like... click to select template and 4 repeater rows get generated. Does that make sense? Thanks!

I followed the guide on adding media using the advanced-nova-media-library package and I'm having an issue. The resource with the custom layout is working fine saving and retrieving images. The...

## Code example: ``` Text::make('Recipient') ->readonly() ->dependsOn( ['type'], function (Text $field, NovaRequest $request, FormData $formData) { if ($formData->type === 'gift') { $field->readonly(false)->rules(['required', 'email']); } } ), Flexible::make('Content') ->addLayout('Simple content section',...

bug

I've got this code: ``` Flexible::make('Practitioner types', 'practitioner_types') ->addLayout('Practitioner type', 'practitioner_type', [ Text::make('Label', 'label'), Slug::make('Slug')->from('Label') ]) ->collapsed() ->button('Add practitioner type'), ``` The slug field doesn't work and I get an...