'boolean', ]; public static $rules = [ 'name' => 'required', ]; /** * When setting the name attribute, also set the slug * * @return Attribute */ public function name(): Attribute { return Attribute::make( set: fn ($name) => [ 'name' => $name, 'slug' => str_slug($name), ] ); } }