Nova-Filemanager icon indicating copy to clipboard operation
Nova-Filemanager copied to clipboard

Help Text

Open xpersonas opened this issue 5 years ago • 1 comments

Sorry if I'm missing this, but I don't see how you would set help text on a FilemanagerField...

FilemanagerField::make('Optional File Download', 'file')
    ->help('THIS DOES NOT SHOW?')
    ->filterBy('documents'),

xpersonas avatar Oct 21 '20 16:10 xpersonas

I have the same issue.

I can see the FilemanagerField object extends the Field object, which in turn uses the Laravel\Nova\Metrics\HasHelpText Trait, so logically I should be able to simply use: -

FilemanagerField::make('Image')->help('help text here');

I've tried this but the text doesn't output under the file upload box in the Nova backend?

Does the FilemanagerField object override the standard Nova rendering function when outputting the field and doesn't include the help text?

touson avatar Jan 31 '22 13:01 touson