*/ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'show_in_registration' => ['required', 'boolean'], 'registration_description' => ['nullable', 'string', 'max:500'], ]; } }