You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Laravel 10 / nova 4.27 app I added "ebess/advanced-nova-media-library": "^4.2",
and using images properties:
Tab::make(__('Images'), [
Images::make('Product image', 'product') // second parameter is the media collection name
->conversionOnIndexView('thumb') // conversion used to display the image
->conversionOnDetailView('thumb')
->conversionOnForm('thumb')
->withResponsiveImages()
->croppable(true)->croppingConfigs(['aspectRatio' => 4 / 3])
->rules('required', 'size:3')
->showStatistics(),
]), // Images Tab
In create mode I have all operations accessible in images :
In Laravel 10 / nova 4.27 app I added "ebess/advanced-nova-media-library": "^4.2",
and using images properties:
In create mode I have all operations accessible in images :
https://prnt.sc/YAqhhIDEwlZY
But in edit mode :
https://prnt.sc/h3SbE7A7WJLS
I have no access to delete image / edit properties / cropper functionality.
I would like to have these tools also/
Can I do it ?
The text was updated successfully, but these errors were encountered: