|string> */ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'icon' => ['required', 'string'], 'color' => [ 'required', 'string', Rule::enum(CategoryColor::class), ], 'type' => [ 'required', 'string', Rule::enum(CategoryType::class), ], ]; } }