import csv and generate slug before save the post

I need to generate a slug while the records are imported.
I tried to use beforeCreate function but can't find any example about how to use it.

I tried:

protected function beforeCreate() : void
    {
        $this->data['slug'] = Str::slug($this->data['name']);
    }

but does not seems to work, when import the data I get a sql error because of missing slug.
Was this page helpful?