tomhatzer / nova-slug-field

Slug field for Laravel Nova
MIT License
142 stars 27 forks source link

Render a help text the field #26

Open alies-dev opened 3 years ago

alies-dev commented 3 years ago

Nova fields have help text that can be specified by ->help($text) method. Both TextWithSlug and Slug don’t render this help text.

elliottregan commented 3 years ago

attributes would be nice, too. I'm looking to make the slug non-editable, so users can't mangle the slug with spaces, and Slug::make('slug')->attributes(['readonly']) would allow me to do that.