-
-
Notifications
You must be signed in to change notification settings - Fork 188
Model id is null
#236
-
Trying to add model id on creation, but is is null, how solve it?
public function getSlugOptions(): SlugOptions
{
return SlugOptions::create()
->preventOverwrite()
->generateSlugsFrom(fn ($model) => $model->id . "-$model->title")
->saveSlugsTo('slug');
}
Use observer and set slug manually in created
event?
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment