Hi,
I see there is a model validator, Phalcon\Mvc\Models\Validator\Uniqueness, that accomplishes my needs to make sure that a username is not taken on a registration form. However, my form is using the Phalcon\Validation\Validator classes to validate the registration form.
- How can I do a Uniqueness validation here?
- Do I have to implement a custom validator?
Thanks