Nova-Filemanager
Nova-Filemanager copied to clipboard
Help Text
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'),
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?