nova-sluggable icon indicating copy to clipboard operation
nova-sluggable copied to clipboard

Slug field for Laravel Nova

Results 9 nova-sluggable issues
Sort by recently updated
recently updated
newest added

After upgrade from Nova 3 to Nova 4, sluggable filed did not show. It was not displayed on all views. Any suggestion? ![image](https://user-images.githubusercontent.com/1073690/170181556-c0b633b9-2c36-4f67-a325-99361d7eb2dc.png) PHP 8.0.12 on Windows 10 (Development Environment)...

Hey there, thank you for your great Package! Recently i needed to get it working with the Package: "optimistdigital/nova-translatable" and found a pretty easy way to get it working. In...

Is it possible to submit the field as a hidden input? For example adding ->hidden() to the chain like: ``` SluggableText::make('Name') ->rules('required'), Slug::make('Slug') ->slugUnique() ->slugModel(static::$model) ->rules('required', 'alpha_dash', 'max:80') ->creationRules('unique:somegroup,slug') ->hidden(),...

Hi, I hope that my slug will not be updated when I updated my name Is that possible? I have tried to include the code below, but it doesnt work...

I need some possibility to add a constraint for a parent model so the generated slug is unique for the given parent. It would be nice if this could be...

Is there an easy way to implement translatable slugs? I'm using the [optimistdigital/nova-translatable](https://novapackages.com/packages/optimistdigital/nova-translatable) package but this gives me an error on the keyup event.

Like in #9, I too was searching for a solution to disable the event when editing a resource. E.g. I have a news resource where the title generates a slug,...

Hi there, Would it be possible to add an option where the slug is generated by clicking a button instead of keyup and blur? I'd only like to generate the...