I am trying to modify array before create:
'beforeCreate' => function($postData){
$postData['slug'] = Event::slugify($postData['name']);
return $postData;},
In Grid, but it doesn't seems to work.
when I print $postData
I can see it on array but is not inserting in database, slug is still empty.