validateField()
validateField()
Section titled “validateField()”Use validateField() when the first failure is enough for a field-level check.
use Fynix\Rule;
$error = Rule::email('email')->validateField('invalid');
if ($error !== null) { echo $error->code;}The method returns a ValidationError or null. Pass the owning object as the second argument when evaluating cross-field constraints.