ebess / advanced-nova-media-library

A Laravel Nova field for displaying, creating, updating and ordering a Spatie Media Library model.
595 stars 297 forks source link

Issue when using inside JSON field (naoray\nova-json) #275

Open alexander-holovko opened 3 years ago

alexander-holovko commented 3 years ago

Hello, can you help please with this issue? I tried to use fillUsing nova field callback but it does not helps.

use Naoray\NovaJson\JSON;
use Ebess\AdvancedNovaMediaLibrary\Fields\Images;

return [
            Images::make('Featured Image'), // that works
            new Panel('Meta Fields',
                JSON::make('Meta', [
                    Images::make('Multi Images', 'multi_images') // that not
                ])->data
            ),
        ];
silentpatrik commented 3 years ago

Does it work with R64 package JSON field? I know i in a similar project switched for this reason and i wanted to save fields to database and have them dynamic. But i dont remember what the difference in features is between the packages.

Ringhoo commented 3 months ago

Any solutions?