supongo que quieres hacer algo así,
Puedes utilizar el hook after para después de esa validación realice otra.
sería algo así. despues de tu validación
Código PHP:
Ver original$validatedData->after(function($validatedData) {
if ($this->somethingElseIsInvalid()) {
$validatedData->errors()->add('field', 'Something is wrong with this field!');
}
});
if ($validatedData->fails()) {
//
}
saludos