'boolean', ]; public static $rules = [ 'name' => 'required', ]; /** * When setting the name attribute, also set the slug * @param $name */ public function setNameAttribute($name): void { $this->attributes['name'] = $name; $this->attributes['slug'] = str_slug($name); } }