Hello
how to use uniqness Validator for mixed columns,
like
concatenate name(attr) and family(attr) together and etc...
$validator = new Validation();
$validator->add(
'name-family-...',
new Uniqueness([
"message" => "Error"
])
);
return $this->validate($validator);