ziffmedia / nova-select-plus

A Laravel Nova Select Field
MIT License
91 stars 26 forks source link

Help text is not showing up on the form #31

Closed archangel2080 closed 3 years ago

archangel2080 commented 3 years ago

To reproduce: Make a SelectPlus on a Resource and add help text then load the create or update form.

Example:

class Bar extends Resource
{
    public functions fields ($request)
    {
          return [
              SelectPlus::make('Foos', 'foos', Foo::class)
                  ->help('Select all related foos');
          ];
     }
}

I believe this is fixable by adding :show-help-text="showHelpText" to the <default-field …> tag here

ralphschindler commented 3 years ago

Fixed in release https://github.com/ziffmedia/nova-select-plus/releases/tag/v1.0.10