1

I'm using Laravel nova also the ClassicO\NovaMediaLibrary\MediaLibrary.

And with Laravel Nova I can use the help method like this:

Select::make('Option')
                ->options(
                    Post::active()
                )->help(
                    'Please select a option'
                )

However using the same help() method and also the MediaLibrary like this:

  MediaLibrary::make('Image')
                ->help('Only png.')
                ->types(['Image']),

The help message don't appear on the page. Do you know what can be the issue?

Ozzdev
  • 65
  • 1
  • 11

1 Answers1

1

I checked their documentation and it seems that they lack any mention of such feature that displays the "note" under the field. So I would advise you to add it yourself to the HTML file because the library is very unlikely to add such a feature judging by how versatile it is and the many shapes the media library input can take.

gowl
  • 314
  • 1
  • 11
  • Thanks, but do you know how to properly add that in the Nova? A field that is not a field in fact? – Ozzdev Feb 14 '22 at 12:24