final class LegacyValidator extends Validator

Baseline validator using the pre-rewrite validateAttribute() loop AND the original O(n²) wildcard expansion.

Provides an accurate performance comparison against the full optimized path by reverting BOTH the execution model and the wildcard expansion.

Traits

Execute compiled AttributePlans against validation data.

Properties

protected Container|null $container

The container instance.

from  Validator
protected PresenceVerifierInterface|null $presenceVerifier

The Presence Verifier implementation.

from  Validator
protected array $failedRules

The failed validation rules.

from  Validator
protected array $excludeAttributes

Attributes that should be excluded from the validated data.

from  Validator
protected MessageBag|null $messages

The message bag instance.

from  Validator
protected array $data

The data under validation.

from  Validator
protected array $initialRules

The initial rules provided.

from  Validator
protected array $rules

The rules to be applied to the data.

from  Validator
protected array|object|string|null $currentRule

The current rule that is validating.

from  Validator
protected array $implicitAttributes

The array of wildcard attributes with their asterisks expanded.

from  Validator
protected Closure|null $implicitAttributesFormatter

The callback that should be used to format the attribute.

from  Validator
protected array $distinctValues

The cached data for the "distinct" rule.

from  Validator
protected AttributePlan> $compiledPlans

The compiled execution plans for the current passes() invocation.

from  Validator
protected PresenceVerifierInterface|null $originalPresenceVerifier

The original presence verifier, saved during batched DB checks.

from  Validator
protected array<string, true> $preExcludedAttributes

Attributes pre-excluded by the exclude_unless/exclude_if pre-pass.

from  Validator
protected array $after

All of the registered "after" callbacks.

from  Validator
array $customMessages

The array of custom error messages.

from  Validator
array $fallbackMessages

The array of fallback error messages.

from  Validator
array $customAttributes

The array of custom attribute names.

from  Validator
array $customValues

The array of custom displayable values.

from  Validator
protected bool $stopOnFirstFailure

Indicates if the validator should stop on the first rule failure.

from  Validator
bool $excludeUnvalidatedArrayKeys

Indicates that unvalidated array keys should be excluded, even if the parent array was validated.

from  Validator
array $extensions

All of the custom validator extensions.

from  Validator
array $replacers

All of the custom replacer extensions.

from  Validator
protected string[] $fileRules

The validation rules that may be applied to files.

from  Validator
protected string[] $implicitRules

The validation rules that imply the field is required.

from  Validator
protected string[] $dependentRules

The validation rules which depend on other fields as parameters.

from  Validator
protected string[] $excludeRules

The validation rules that can exclude an attribute.

from  Validator
protected string[] $sizeRules

The size related validation rules.

from  Validator
protected string[] $numericRules

The numeric related validation rules.

from  Validator
protected string[] $defaultNumericRules

The default numeric related validation rules.

from  Validator
static protected string|null $placeholderHash

The current random hash for the validator.

from  Validator
protected ValidationException> $exception

The exception to throw upon failure.

from  Validator
protected Closure|null $ensureExponentWithinAllowedRangeUsing

The custom callback to determine if an exponent is within allowed range.

from  Validator

Methods

string
replaceAcceptedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the accepted_if rule.

string
replaceDeclinedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the declined_if rule.

string
replaceBetween(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the between rule.

string
replaceDateFormat(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the date_format rule.

string
replaceDecimal(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the decimal rule.

string
replaceDifferent(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the different rule.

string
replaceDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the digits rule.

string
replaceDigitsBetween(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the digits (between) rule.

string
replaceEncoding(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the encoding rule.

string
replaceExtensions(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the extensions rule.

string
replaceMin(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the min rule.

string
replaceMinDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the min digits rule.

string
replaceMax(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the max rule.

string
replaceMaxDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the max digits rule.

string
replaceMissingIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_if rule.

string
replaceMissingUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_unless rule.

string
replaceMissingWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_with rule.

string
replaceMissingWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_with_all rule.

string
replaceMultipleOf(mixed $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the multiple_of rule.

string
replaceIn(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in rule.

string
replaceNotIn(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the not_in rule.

string
replaceInArray(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in_array rule.

string
replaceInArrayKeys(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in_array_keys rule.

string
replaceRequiredArrayKeys(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_array_keys rule.

string
replaceMimetypes(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the mimetypes rule.

string
replaceMimes(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the mimes rule.

string
replacePresentIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_if rule.

string
replacePresentUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_unless rule.

string
replacePresentWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_with rule.

string
replacePresentWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_with_all rule.

string
replaceRequiredWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_with rule.

string
replaceRequiredWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_with_all rule.

string
replaceRequiredWithout(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_without rule.

string
replaceRequiredWithoutAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_without_all rule.

string
replaceSize(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the size rule.

string
replaceGt(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the gt rule.

string
replaceLt(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the lt rule.

string
replaceGte(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the gte rule.

string
replaceLte(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the lte rule.

string
replaceRequiredIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if rule.

string
replaceRequiredIfAccepted(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if_accepted rule.

string
replaceRequiredIfDeclined(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if_declined rule.

string
replaceRequiredUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_unless rule.

string
replaceProhibitedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if rule.

string
replaceProhibitedIfAccepted(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if_accepted rule.

string
replaceProhibitedIfDeclined(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if_declined rule.

string
replaceProhibitedUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_unless rule.

string
replaceProhibits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_with rule.

string
replaceSame(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the same rule.

string
replaceBefore(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the before rule.

string
replaceBeforeOrEqual(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the before_or_equal rule.

string
replaceAfter(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the after rule.

string
replaceAfterOrEqual(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the after_or_equal rule.

string
replaceDateEquals(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the date_equals rule.

string
replaceDimensions(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the dimensions rule.

string
replaceEndsWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the ends_with rule.

string
replaceDoesntEndWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_end_with rule.

string
replaceStartsWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the starts_with rule.

string
replaceDoesntStartWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_start_with rule.

string
replaceDoesntContain(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_contain rule.

string
getMessage(string $attribute, string $rule)

Get the validation message for an attribute and rule.

string|null
getInlineMessage(string $attribute, string $rule)

Get the proper inline error message for standard and size rules.

array|string|null
getFromLocalArray(string $attribute, string $lowerRule, array|null $source = null)

Get the inline message for a rule if it exists.

string
getCustomMessageFromTranslator(array|string $keys)

Get the custom error message from the translator.

string
getWildcardCustomMessages(array $messages, string $search, string $default)

Check the given messages for a wildcard key.

string
getSizeMessage(string $attribute, string $rule)

Get the proper error message for an attribute and size rule.

string
getAttributeType(string $attribute)

Get the data type of the given attribute.

string
makeReplacements(string $message, string $attribute, string $rule, array $parameters)

Replace all error message place-holders with actual values.

string
getDisplayableAttribute(string $attribute)

Get the displayable name of the attribute.

string|null
getAttributeFromTranslations(string $name)

Get the given attribute from the attribute translations.

string|null
getAttributeFromLocalArray(string $attribute, array|null $source = null)

Get the custom name for an attribute if it exists in the given array.

string
replaceAttributePlaceholder(string $message, string $value)

Replace the :attribute placeholder in the given message.

string
replaceIndexPlaceholder(string $message, string $attribute)

Replace the :index placeholder in the given message.

string
replacePositionPlaceholder(string $message, string $attribute)

Replace the :position placeholder in the given message.

string
replaceOrdinalPositionPlaceholder(string $message, string $attribute)

Replace the :ordinal-position placeholder in the given message.

string
replaceIndexOrPositionPlaceholder(string $message, string $attribute, string $placeholder, Closure|null $modifier = null)

Replace the :index or :position placeholder in the given message.

string
numberToIndexOrPositionWord(int $value)

Get the word for a index or position segment.

string
replaceInputPlaceholder(string $message, string $attribute)

Replace the :input placeholder in the given message.

string
getDisplayableValue(string $attribute, mixed $value)

Get the displayable name of the value.

array
getAttributeList(array $values)

Transform an array of attributes to their displayable form.

string|null
callReplacer(string $message, string $attribute, string $rule, array $parameters, Validator $validator)

Call a custom validator message replacer.

string
callClassBasedReplacer(string $callback, string $message, string $attribute, string $rule, array $parameters, Validator $validator)

Call a class based validator message replacer.

bool
validateAccepted(string $attribute, mixed $value)

Validate that an attribute was "accepted".

bool
validateAcceptedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute was "accepted" when another attribute has a given value.

bool
validateDeclined(string $attribute, mixed $value)

Validate that an attribute was "declined".

bool
validateDeclinedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute was "declined" when another attribute has a given value.

bool
validateActiveUrl(string $attribute, mixed $value)

Validate that an attribute is an active URL.

array|false
getDnsRecords(string $hostname, int $type)

Get the DNS records for the given hostname.

bool
validateAscii(string $attribute, mixed $value)

Validate that an attribute is 7 bit ASCII.

bool
validateBail()

"Break" on first validation fail.

bool
validateBefore(string $attribute, mixed $value, mixed $parameters)

Validate the date is before a given date.

bool
validateBeforeOrEqual(string $attribute, mixed $value, mixed $parameters)

Validate the date is before or equal a given date.

bool
validateAfter(string $attribute, mixed $value, mixed $parameters)

Validate the date is after a given date.

bool
validateAfterOrEqual(string $attribute, mixed $value, mixed $parameters)

Validate the date is equal or after a given date.

bool
compareDates(string $attribute, mixed $value, array $parameters, string $operator)

Compare a given date against another using an operator.

string|null
getDateFormat(string $attribute)

Get the date format for an attribute if it has one.

int|null
getDateTimestamp(mixed $value)

Get the date timestamp.

bool
checkDateTimeOrder(string $format, string $first, string $second, string $operator)

Given two date/time strings, check that one is after the other.

getDateTimeWithOptionalFormat(string $format, string $value)

Get a DateTime instance from a string.

getDateTime(DateTimeInterface|string $value)

Get a DateTime instance from a string with no format.

bool
validateAlpha(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alphabetic characters.

bool
validateAlphaDash(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.

bool
validateAlphaNum(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alpha-numeric characters.

bool
validateArray(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is an array.

bool
validateList(string $attribute, mixed $value)

Validate that an attribute is a list.

bool
validateRequiredArrayKeys(string $attribute, mixed $value, array $parameters)

Validate that an array has all of the given keys.

bool
validateBetween(string $attribute, mixed $value, array $parameters)

Validate the size of an attribute is between a set of values.

bool
validateBoolean(string $attribute, mixed $value, array $parameters)

Validate that an attribute is a boolean.

bool
validateConfirmed(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a matching confirmation.

bool
validateContains(string $attribute, mixed $value, mixed $parameters)

Validate an attribute contains a list of values.

bool
validateDoesntContain(string $attribute, mixed $value, mixed $parameters)

Validate an attribute does not contain a list of values.

bool
validateCurrentPassword(string $attribute, mixed $value, mixed $parameters)

Validate that the password of the currently authenticated user matches the given value.

bool
validateDate(string $attribute, mixed $value)

Validate that an attribute is a valid date.

bool
isValidDate(mixed $value)

Determine if a value is a valid date.

bool
validateDateFormat(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute matches a date format.

bool
matchesDateFormat(mixed $value, string $format)

Determine if a value matches a specific date format.

bool
validateDateEquals(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is equal to another date.

bool
validateDecimal(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a given number of decimal places.

bool
validateDifferent(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is different from another attribute.

bool
validateDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a given number of digits.

bool
validateDigitsBetween(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is between a given number of digits.

bool
validateDimensions(string $attribute, mixed $value, mixed $parameters)

Validate the dimensions of an image matches the given values.

bool
failsBasicDimensionChecks(array $parameters, int $width, int $height)

Test if the given width and height fail any conditions.

bool
failsRatioCheck(array $parameters, int $width, int $height)

Determine if the given parameters fail a dimension ratio check.

bool
validateDistinct(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is unique among other values.

array
getDistinctValues(string $attribute)

Get the values to distinct between.

array
extractDistinctValues(string $attribute)

Extract the distinct values from the data.

bool
validateEmail(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is a valid e-mail address.

bool
isValidEmail(string $value)

Determine if a value is a valid email address using basic RFC validation.

bool
validateEncoding(string $attribute, mixed $value, array $parameters)

Validate that a value has a specific character encoding.

bool
validateExists(string $attribute, mixed $value, mixed $parameters)

Validate the existence of an attribute value in a database table.

int
getExistCount(mixed $connection, string $table, string $column, mixed $value, array $parameters)

Get the number of records that exist in storage.

bool
validateUnique(string $attribute, mixed $value, mixed $parameters)

Validate the uniqueness of an attribute value on a given database table.

array
getUniqueIds(string|null $idColumn, array $parameters)

Get the excluded ID column and value for the unique rule.

int|string|null
prepareUniqueId(mixed $id)

Prepare the given ID for querying.

array
getUniqueExtra(array $parameters)

Get the extra conditions for a unique rule.

array
parseTable(string $table)

Parse the connection / table for the unique / exists rules.

bool|string
getQueryColumn(array $parameters, string $attribute)

Get the column name for an exists / unique query.

string
guessColumnForQuery(string $attribute)

Guess the database column from the given attribute name.

array
getExtraConditions(array $segments)

Get the extra conditions for a unique / exists rule.

bool
validateExtensions(string $attribute, mixed $value, array $parameters)

Validate the extension of a file upload attribute is in a set of defined extensions.

bool
validateFile(string $attribute, mixed $value)

Validate the given value is a valid file.

bool
validateFilled(string $attribute, mixed $value)

Validate the given attribute is filled if it is present.

bool
validateGt(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is greater than another attribute.

bool
validateLt(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is less than another attribute.

bool
validateGte(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is greater than or equal another attribute.

bool
validateLte(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is less than or equal another attribute.

bool
validateLowercase(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is lowercase.

bool
validateUppercase(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is uppercase.

bool
validateHexColor(string $attribute, mixed $value)

Validate that an attribute is a valid HEX color.

bool
validateImage(string $attribute, mixed $value, array $parameters = [])

Validate the MIME type of a file is an image MIME type.

bool
validateIn(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is contained within a list of values.

bool
validateInArray(string $attribute, mixed $value, mixed $parameters)

Validate that the values of an attribute are in another attribute.

bool
validateInArrayKeys(string $attribute, mixed $value, array $parameters)

Validate that an array contains at least one of the given keys.

bool
validateInteger(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is an integer.

bool
validateIp(string $attribute, mixed $value)

Validate that an attribute is a valid IP.

bool
validateIpv4(string $attribute, mixed $value)

Validate that an attribute is a valid IPv4.

bool
validateIpv6(string $attribute, mixed $value)

Validate that an attribute is a valid IPv6.

bool
isValidIp(string $value)

Determine if a value is a valid IP address (any version).

bool
isValidIpv4(string $value)

Determine if a value is a valid IPv4 address.

bool
isValidIpv6(string $value)

Determine if a value is a valid IPv6 address.

bool
validateMacAddress(string $attribute, mixed $value)

Validate that an attribute is a valid MAC address.

bool
validateJson(string $attribute, mixed $value)

Validate the attribute is a valid JSON string.

bool
validateMax(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute is less than or equal to a maximum value.

bool
validateMaxDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a maximum number of digits.

bool
validateMimes(string $attribute, mixed $value, mixed $parameters)

Validate the guessed extension of a file upload is in a set of file extensions.

bool
validateMimetypes(string $attribute, mixed $value, mixed $parameters)

Validate the MIME type of a file upload attribute is in a set of MIME types.

bool
shouldBlockPhpUpload(mixed $value, array $parameters)

Check if PHP uploads are explicitly allowed.

bool
validateMin(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute is greater than or equal to a minimum value.

bool
validateMinDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a minimum number of digits.

bool
validateMissing(mixed $attribute, mixed $value, array<int, int|string> $parameters)

Validate that an attribute is missing.

bool
validateMissingIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when another attribute has a given value.

bool
validateMissingUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing unless another attribute has a given value.

bool
validateMissingWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when any given attribute is present.

bool
validateMissingWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when all given attributes are present.

bool
validateMultipleOf(string $attribute, mixed $value, mixed $parameters)

Validate the value of an attribute is a multiple of a given value.

bool
isMultipleOf(mixed $value, mixed $divisor)

Determine if a value is an exact multiple of a divisor.

bool
validateNullable()

"Indicate" validation should pass if value is null.

bool
validateNotIn(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is not contained within a list of values.

bool
validateNumeric(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is numeric.

bool
validatePresent(string $attribute, mixed $value)

Validate that an attribute exists even if not filled.

bool
validatePresentIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when another attribute has a given value.

bool
validatePresentUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present unless another attribute has a given value.

bool
validatePresentWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when any given attribute is present.

bool
validatePresentWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when all given attributes are present.

bool
validateRegex(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute passes a regular expression check.

bool
validateNotRegex(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not pass a regular expression check.

bool
validateRequired(string $attribute, mixed $value)

Validate that a required attribute exists.

bool
validateRequiredIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute has a given value.

bool
validateRequiredIfAccepted(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute was "accepted".

bool
validateRequiredIfDeclined(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute was "declined".

bool
validateProhibited(string $attribute, mixed $value)

Validate that an attribute does not exist or is an empty string.

bool
validateProhibitedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute has a given value.

bool
validateProhibitedIfAccepted(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute was "accepted".

bool
validateProhibitedIfDeclined(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute was "declined".

bool
validateProhibitedUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist unless another attribute has a given value.

bool
validateProhibits(string $attribute, mixed $value, mixed $parameters)

Validate that other attributes do not exist when this attribute exists.

bool
validateExclude()

Indicate that an attribute is excluded.

bool
validateExcludeIf(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute has a given value.

bool
validateExcludeUnless(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute does not have a given value.

bool
validateRequiredUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute does not have a given value.

bool
validateExcludeWith(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute presents.

bool
validateExcludeWithout(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute is missing.

array
parseDependentRuleParameters(array $parameters)

Prepare the values and the other value for validation.

bool
shouldConvertToBoolean(string $parameter)

Check if parameter should be converted to boolean.

array
convertValuesToBoolean(array $values)

Convert the given values to boolean if they are string "true" / "false".

array
convertValuesToNull(array $values)

Convert the given values to null if they are string "null".

bool
validateRequiredWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when any other attribute exists.

bool
validateRequiredWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when all other attributes exist.

bool
validateRequiredWithout(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute does not.

bool
validateRequiredWithoutAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when all other attributes do not.

bool
anyFailingRequired(array $attributes)

Determine if any of the given attributes fail the required test.

bool
allFailingRequired(array $attributes)

Determine if all of the given attributes fail the required test.

bool
validateSame(string $attribute, mixed $value, mixed $parameters)

Validate that two attributes match.

bool
validateSize(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute.

bool
validateSometimes()

"Validate" optional attributes.

bool
validateStartsWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute starts with a given substring.

bool
validateDoesntStartWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute does not start with a given substring.

bool
validateEndsWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute ends with a given substring.

bool
validateDoesntEndWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute does not end with a given substring.

bool
validateString(string $attribute, mixed $value)

Validate that an attribute is a string.

bool
validateTimezone(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is a valid timezone.

bool
validateUrl(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is a valid URL.

bool
validateUlid(string $attribute, mixed $value)

Validate that an attribute is a valid ULID.

bool
isValidUlid(string $value)

Determine if a value is a valid ULID.

bool
validateUuid(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is a valid UUID.

bool
isValidUuid(string $value)

Determine if a value is a valid UUID (any version).

float|int|string
getSize(string $attribute, mixed $value)

Get the size of an attribute.

float|int|string
sizeOf(mixed $value, SizeMode $mode)

Compute a value's "size" given a pre-resolved mode.

bool
isValidFileInstance(mixed $value)

Check that the given value is a valid file instance.

bool
compare(mixed $first, mixed $second, string $operator)

Determine if a comparison passes between the given values.

array|null
parseNamedParameters(array $parameters)

Parse named parameters to $key => $value items.

void
requireParameterCount(int $count, array $parameters, string $rule)

Require a certain number of parameters to be present.

bool
isSameType(mixed $first, mixed $second)

Check if the parameters are of the same type.

void
shouldBeNumeric(string $attribute, string $rule)

Adds the existing rule to the numericRules array if the attribute's value is numeric.

mixed
trim(mixed $value)

Trim the value if it is a string.

mixed
ensureExponentWithinAllowedRange(string $attribute, mixed $value)

Ensure the exponent is within the allowed range.

void
executeCompiledPlans(array $compiledPlans)

Execute all compiled plans against the validation data.

bool
executeInline(InlineCheck $check, mixed $value, string $attribute)

Execute an inline check against a value.

__construct(Translator $translator, array $data, array $rules, array $messages = [], array $attributes = [])

Create a new Validator instance.

array
parseData(array $data)

Parse the data array, converting dots and asterisks.

array
replacePlaceholders(array $data)

Replace the placeholders used in data keys.

string
replacePlaceholderInString(string $value)

Replace the placeholders in the given string.

array
replaceDotPlaceholderInParameters(array $parameters)

Replace each field parameter dot placeholder with dot.

after(callable|string $callback)

Add an after validation callback.

bool
passes()

Determine if the data passes the validation rules using the legacy path.

array
compileRules()

Compile all attribute rules into AttributePlans.

bool
compiledPlansContainValidatorAwareRules()

Determine if any compiled plan contains a ValidatorAwareRule.

void
preEvaluateExclusions()

Pre-evaluate exclude_unless / exclude_if conditions before the main loop.

void
maybeBatchDatabaseChecks()

Build a PrecomputedPresenceVerifier for wildcard-expanded exists/unique rules by batching their lookups into single whereIn queries.

bool
fails()

Determine if the data fails the validation rules.

mixed
whenPasses(callable $callback, callable|null $default = null)

Execute the callback if the data passes the validation rules.

mixed
whenFails(callable $callback, callable|null $default = null)

Execute the callback if the data fails the validation rules.

bool
shouldBeExcluded(string $attribute)

Determine if the attribute should be excluded.

void
removeAttribute(string $attribute)

Remove the given attribute.

array
validate()

Run the validator's rules against its data.

array
validateWithBag(string $errorBag)

Run the validator's rules against its data.

safe(array|null $keys = null)

Get a validated input container for the validated input.

array
validated()

Get the attributes and values that were validated.

void
validateAttribute(string $attribute, array|object|string $rule)

Validate a given attribute against a rule.

bool
dependsOnOtherFields(object|string $rule)

Determine if the given rule depends on other fields.

array
getExplicitKeys(string $attribute)

Get the explicit keys from an attribute flattened with dot notation.

string
getPrimaryAttribute(string $attribute)

Get the primary attribute name.

array
replaceDotInParameters(array $parameters)

Replace each field parameter which has an escaped dot with the dot placeholder.

array
replaceAsterisksInParameters(array $parameters, array $keys)

Replace each field parameter which has asterisks with the given keys.

bool
isValidatable(object|string $rule, string $attribute, mixed $value)

Determine if the attribute is validatable.

bool
presentOrRuleIsImplicit(object|string $rule, string $attribute, mixed $value)

Determine if the field is present, or the rule implies required.

bool
isImplicit(object|string $rule)

Determine if a given rule implies the attribute is required.

bool
passesOptionalCheck(string $attribute)

Determine if the attribute passes any optional check.

bool
isNotNullIfMarkedAsNullable(object|string $rule, string $attribute)

Determine if the attribute fails the nullable check.

bool
hasNotFailedPreviousRuleIfPresenceRule(object|string $rule, string $attribute)

Determine if it's a necessary presence validation.

void
validateUsingCustomRule(string $attribute, mixed $value, Rule $rule)

Validate an attribute using a custom rule object.

bool
shouldStopValidating(string $attribute)

Check if we should stop further validations on a given attribute.

void
addFailure(string $attribute, string $rule, array $parameters = [])

Add a failed rule and error message to the collection.

void
excludeAttribute(string $attribute)

Add the given attribute to the list of excluded attributes.

array
valid()

Returns the data which was valid.

array
invalid()

Returns the data which was invalid.

array
attributesThatHaveMessages()

Generate an array of all attributes that have messages.

array
failed()

Get the failed validation rules.

messages()

Get the message container for the validator.

errors()

An alternative more semantic shortcut to the message container.

getMessageBag()

Get the messages for the instance.

bool
hasRule(string $attribute, array|string $rules)

Determine if the given attribute has a rule in the given set.

array|null
getRule(string $attribute, array|string $rules)

Get a rule and its parameters for a given attribute.

array
attributes()

Get the data under validation.

array
getData()

Get the data under validation.

setData(array $data)

Set the data under validation.

mixed
getValue(string $attribute)

Get the value of a given attribute.

void
setValue(string $attribute, mixed $value)

Set the value of a given attribute.

array
getRules()

Get the validation rules.

array
getRulesWithoutPlaceholders()

Get the validation rules with key placeholders removed.

setRules(array $rules)

Set the validation rules.

appendRules(array $rules)

Append new validation rules to the validator.

void
addRules(array $rules)

Override addRules to use the legacy O(n²) wildcard expansion parser.

sometimes(array|string $attribute, array|string $rules, callable $callback)

Add conditions to a given field based on a Closure.

stopOnFirstFailure(bool $stopOnFirstFailure = true)

Instruct the validator to stop validating after the first rule failure.

void
addExtensions(array $extensions)

Register an array of custom validator extensions.

void
addImplicitExtensions(array $extensions)

Register an array of custom implicit validator extensions.

void
addDependentExtensions(array $extensions)

Register an array of custom dependent validator extensions.

void
addExtension(string $rule, Closure|string $extension)

Register a custom validator extension.

void
addImplicitExtension(string $rule, Closure|string $extension)

Register a custom implicit validator extension.

void
addDependentExtension(string $rule, Closure|string $extension)

Register a custom dependent validator extension.

void
addReplacers(array $replacers)

Register an array of custom validator message replacers.

void
addReplacer(string $rule, Closure|string $replacer)

Register a custom validator message replacer.

setCustomMessages(array $messages)

Set the custom messages for the validator.

setAttributeNames(array $attributes)

Set the custom attributes on the validator.

addCustomAttributes(array $attributes)

Add custom attributes to the validator.

setImplicitAttributesFormatter(callable|null $formatter = null)

Set the callback that used to format an implicit attribute.

setValueNames(array $values)

Set the custom values on the validator.

addCustomValues(array $customValues)

Add the custom values for the validator.

void
setFallbackMessages(array $messages)

Set the fallback messages for the validator.

getPresenceVerifier(string|null $connection = null)

Get the Presence Verifier implementation.

void
setPresenceVerifier(PresenceVerifierInterface $presenceVerifier)

Set the Presence Verifier implementation.

string
getException()

Get the exception to throw upon failed validation.

setException(string|Throwable $exception)

Set the exception to throw upon failed validation.

ensureExponentWithinAllowedRangeUsing(Closure $callback)

Ensure exponents are within range using the given callback.

getTranslator()

Get the Translator implementation.

void
setTranslator(Translator $translator)

Set the Translator implementation.

void
setContainer(Container $container)

Set the IoC container instance.

bool|null
callExtension(string $rule, array $parameters)

Call a custom validator extension.

bool
callClassBasedExtension(string $callback, array $parameters)

Call a class based validator extension.

static string
encodeAttributeWithPlaceholder(string $attribute)

Encode the attribute with the placeholder hash.

static string
decodeAttributeWithPlaceholder(string $attribute)

Decode an attribute with a placeholder hash.

static void
flushState()

Flush all static state.

mixed
__call(string $method, array $parameters)

Handle dynamic calls to class methods.

Details

in ReplacesAttributes at line 17
protected string replaceAcceptedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the accepted_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 29
protected string replaceDeclinedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the declined_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 43
protected string replaceBetween(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the between rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 53
protected string replaceDateFormat(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the date_format rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 63
protected string replaceDecimal(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the decimal rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 79
protected string replaceDifferent(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the different rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 89
protected string replaceDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the digits rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 99
protected string replaceDigitsBetween(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the digits (between) rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 109
protected string replaceEncoding(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the encoding rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 119
protected string replaceExtensions(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the extensions rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 129
protected string replaceMin(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the min rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 139
protected string replaceMinDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the min digits rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 149
protected string replaceMax(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the max rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 159
protected string replaceMaxDigits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the max digits rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 169
protected string replaceMissingIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 183
protected string replaceMissingUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_unless rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 196
protected string replaceMissingWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 214
protected string replaceMissingWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the missing_with_all rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 225
protected string replaceMultipleOf(mixed $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the multiple_of rule.

Parameters

mixed $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 235
protected string replaceIn(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 257
protected string replaceNotIn(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the not_in rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 267
protected string replaceInArray(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in_array rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 279
protected string replaceInArrayKeys(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the in_array_keys rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 289
protected string replaceRequiredArrayKeys(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_array_keys rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 303
protected string replaceMimetypes(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the mimetypes rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 313
protected string replaceMimes(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the mimes rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 323
protected string replacePresentIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 336
protected string replacePresentUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_unless rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 349
protected string replacePresentWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 367
protected string replacePresentWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the present_with_all rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 377
protected string replaceRequiredWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 395
protected string replaceRequiredWithAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_with_all rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 405
protected string replaceRequiredWithout(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_without rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 415
protected string replaceRequiredWithoutAll(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_without_all rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 425
protected string replaceSize(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the size rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 435
protected string replaceGt(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the gt rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 449
protected string replaceLt(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the lt rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 463
protected string replaceGte(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the gte rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 477
protected string replaceLte(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the lte rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 491
protected string replaceRequiredIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 505
protected string replaceRequiredIfAccepted(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if_accepted rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 517
string replaceRequiredIfDeclined(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_if_declined rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 529
protected string replaceRequiredUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the required_unless rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 558
protected string replaceProhibitedIf(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 568
protected string replaceProhibitedIfAccepted(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if_accepted rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 578
string replaceProhibitedIfDeclined(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_if_declined rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 588
protected string replaceProhibitedUnless(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_unless rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 606
protected string replaceProhibits(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the prohibited_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 624
protected string replaceSame(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the same rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 636
protected string replaceBefore(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the before rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 650
protected string replaceBeforeOrEqual(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the before_or_equal rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 660
protected string replaceAfter(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the after rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 670
protected string replaceAfterOrEqual(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the after_or_equal rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 680
protected string replaceDateEquals(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the date_equals rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 690
protected string replaceDimensions(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the dimensions rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 708
protected string replaceEndsWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the ends_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 722
protected string replaceDoesntEndWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_end_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 736
protected string replaceStartsWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the starts_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 746
protected string replaceDoesntStartWith(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_start_with rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in ReplacesAttributes at line 760
protected string replaceDoesntContain(string $message, string $attribute, string $rule, array $parameters)

Replace all place-holders for the doesnt_contain rule.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in FormatsMessages at line 21
protected string getMessage(string $attribute, string $rule)

Get the validation message for an attribute and rule.

Parameters

string $attribute
string $rule

Return Value

string

in FormatsMessages at line 79
protected string|null getInlineMessage(string $attribute, string $rule)

Get the proper inline error message for standard and size rules.

Parameters

string $attribute
string $rule

Return Value

string|null

in FormatsMessages at line 91
protected array|string|null getFromLocalArray(string $attribute, string $lowerRule, array|null $source = null)

Get the inline message for a rule if it exists.

Parameters

string $attribute
string $lowerRule
array|null $source

Return Value

array|string|null

in FormatsMessages at line 144
protected string getCustomMessageFromTranslator(array|string $keys)

Get the custom error message from the translator.

Parameters

array|string $keys

Return Value

string

in FormatsMessages at line 175
protected string getWildcardCustomMessages(array $messages, string $search, string $default)

Check the given messages for a wildcard key.

Parameters

array $messages
string $search
string $default

Return Value

string

in FormatsMessages at line 190
protected string getSizeMessage(string $attribute, string $rule)

Get the proper error message for an attribute and size rule.

Parameters

string $attribute
string $rule

Return Value

string

in FormatsMessages at line 207
protected string getAttributeType(string $attribute)

Get the data type of the given attribute.

Parameters

string $attribute

Return Value

string

in FormatsMessages at line 223
string makeReplacements(string $message, string $attribute, string $rule, array $parameters)

Replace all error message place-holders with actual values.

Parameters

string $message
string $attribute
string $rule
array $parameters

Return Value

string

in FormatsMessages at line 248
string getDisplayableAttribute(string $attribute)

Get the displayable name of the attribute.

Parameters

string $attribute

Return Value

string

in FormatsMessages at line 287
protected string|null getAttributeFromTranslations(string $name)

Get the given attribute from the attribute translations.

Parameters

string $name

Return Value

string|null

in FormatsMessages at line 299
protected string|null getAttributeFromLocalArray(string $attribute, array|null $source = null)

Get the custom name for an attribute if it exists in the given array.

Parameters

string $attribute
array|null $source

Return Value

string|null

in FormatsMessages at line 323
protected string replaceAttributePlaceholder(string $message, string $value)

Replace the :attribute placeholder in the given message.

Parameters

string $message
string $value

Return Value

string

in FormatsMessages at line 335
protected string replaceIndexPlaceholder(string $message, string $attribute)

Replace the :index placeholder in the given message.

Parameters

string $message
string $attribute

Return Value

string

in FormatsMessages at line 347
protected string replacePositionPlaceholder(string $message, string $attribute)

Replace the :position placeholder in the given message.

Parameters

string $message
string $attribute

Return Value

string

in FormatsMessages at line 360
protected string replaceOrdinalPositionPlaceholder(string $message, string $attribute)

Replace the :ordinal-position placeholder in the given message.

Parameters

string $message
string $attribute

Return Value

string

in FormatsMessages at line 377
protected string replaceIndexOrPositionPlaceholder(string $message, string $attribute, string $placeholder, Closure|null $modifier = null)

Replace the :index or :position placeholder in the given message.

Parameters

string $message
string $attribute
string $placeholder
Closure|null $modifier

Return Value

string

in FormatsMessages at line 413
protected string numberToIndexOrPositionWord(int $value)

Get the word for a index or position segment.

Parameters

int $value

Return Value

string

in FormatsMessages at line 432
protected string replaceInputPlaceholder(string $message, string $attribute)

Replace the :input placeholder in the given message.

Parameters

string $message
string $attribute

Return Value

string

in FormatsMessages at line 450
string getDisplayableValue(string $attribute, mixed $value)

Get the displayable name of the value.

Parameters

string $attribute
mixed $value

Return Value

string

in FormatsMessages at line 480
protected array getAttributeList(array $values)

Transform an array of attributes to their displayable form.

Parameters

array $values

Return Value

array

in FormatsMessages at line 497
protected string|null callReplacer(string $message, string $attribute, string $rule, array $parameters, Validator $validator)

Call a custom validator message replacer.

Parameters

string $message
string $attribute
string $rule
array $parameters
Validator $validator

Return Value

string|null

in FormatsMessages at line 514
protected string callClassBasedReplacer(string $callback, string $message, string $attribute, string $rule, array $parameters, Validator $validator)

Call a class based validator message replacer.

Parameters

string $callback
string $message
string $attribute
string $rule
array $parameters
Validator $validator

Return Value

string

bool validateAccepted(string $attribute, mixed $value)

Validate that an attribute was "accepted".

This validation rule implies the attribute is "required".

Parameters

string $attribute
mixed $value

Return Value

bool

bool validateAcceptedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute was "accepted" when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

bool validateDeclined(string $attribute, mixed $value)

Validate that an attribute was "declined".

This validation rule implies the attribute is "required".

Parameters

string $attribute
mixed $value

Return Value

bool

bool validateDeclinedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute was "declined" when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 104
bool validateActiveUrl(string $attribute, mixed $value)

Validate that an attribute is an active URL.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 128
protected array|false getDnsRecords(string $hostname, int $type)

Get the DNS records for the given hostname.

Parameters

string $hostname
int $type

Return Value

array|false

in ValidatesAttributes at line 136
bool validateAscii(string $attribute, mixed $value)

Validate that an attribute is 7 bit ASCII.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 146
bool validateBail()

"Break" on first validation fail.

Always returns true, just lets us put "bail" in rules.

Return Value

bool

in ValidatesAttributes at line 156
bool validateBefore(string $attribute, mixed $value, mixed $parameters)

Validate the date is before a given date.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 168
bool validateBeforeOrEqual(string $attribute, mixed $value, mixed $parameters)

Validate the date is before or equal a given date.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 180
bool validateAfter(string $attribute, mixed $value, mixed $parameters)

Validate the date is after a given date.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 192
bool validateAfterOrEqual(string $attribute, mixed $value, mixed $parameters)

Validate the date is equal or after a given date.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 204
protected bool compareDates(string $attribute, mixed $value, array $parameters, string $operator)

Compare a given date against another using an operator.

Parameters

string $attribute
mixed $value
array $parameters
string $operator

Return Value

bool

in ValidatesAttributes at line 224
protected string|null getDateFormat(string $attribute)

Get the date format for an attribute if it has one.

Parameters

string $attribute

Return Value

string|null

in ValidatesAttributes at line 236
protected int|null getDateTimestamp(mixed $value)

Get the date timestamp.

Parameters

mixed $value

Return Value

int|null

in ValidatesAttributes at line 246
protected bool checkDateTimeOrder(string $format, string $first, string $second, string $operator)

Given two date/time strings, check that one is after the other.

Parameters

string $format
string $first
string $second
string $operator

Return Value

bool

in ValidatesAttributes at line 266
protected DateTimeInterface|null getDateTimeWithOptionalFormat(string $format, string $value)

Get a DateTime instance from a string.

Parameters

string $format
string $value

Return Value

DateTimeInterface|null

in ValidatesAttributes at line 278
protected DateTimeInterface|null getDateTime(DateTimeInterface|string $value)

Get a DateTime instance from a string with no format.

Parameters

DateTimeInterface|string $value

Return Value

DateTimeInterface|null

in ValidatesAttributes at line 292
bool validateAlpha(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alphabetic characters.

If the 'ascii' option is passed, validate that an attribute contains only ascii alphabetic characters.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 306
bool validateAlphaDash(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alpha-numeric characters, dashes, and underscores.

If the 'ascii' option is passed, validate that an attribute contains only ascii alpha-numeric characters, dashes, and underscores.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 323
bool validateAlphaNum(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute contains only alpha-numeric characters.

If the 'ascii' option is passed, validate that an attribute contains only ascii alpha-numeric characters.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 341
bool validateArray(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is an array.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 357
bool validateList(string $attribute, mixed $value)

Validate that an attribute is a list.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 367
bool validateRequiredArrayKeys(string $attribute, mixed $value, array $parameters)

Validate that an array has all of the given keys.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 387
bool validateBetween(string $attribute, mixed $value, array $parameters)

Validate the size of an attribute is between a set of values.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 400
bool validateBoolean(string $attribute, mixed $value, array $parameters)

Validate that an attribute is a boolean.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 416
bool validateConfirmed(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a matching confirmation.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 426
bool validateContains(string $attribute, mixed $value, mixed $parameters)

Validate an attribute contains a list of values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 446
bool validateDoesntContain(string $attribute, mixed $value, mixed $parameters)

Validate an attribute does not contain a list of values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 466
protected bool validateCurrentPassword(string $attribute, mixed $value, mixed $parameters)

Validate that the password of the currently authenticated user matches the given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 483
bool validateDate(string $attribute, mixed $value)

Validate that an attribute is a valid date.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 495
protected bool isValidDate(mixed $value)

Determine if a value is a valid date.

Accepts DateTimeInterface instances, numeric timestamps, and string date representations. Validates via strtotime() and date_parse() + checkdate() to reject dates like February 30th.

Parameters

mixed $value

Return Value

bool

in ValidatesAttributes at line 519
bool validateDateFormat(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute matches a date format.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 542
protected bool matchesDateFormat(mixed $value, string $format)

Determine if a value matches a specific date format.

Creates a DateTime from the format and verifies round-trip formatting produces the same string. Catches ValueError for invalid format strings.

Parameters

mixed $value
string $format

Return Value

bool

in ValidatesAttributes at line 562
bool validateDateEquals(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is equal to another date.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 574
bool validateDecimal(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a given number of decimal places.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 603
bool validateDifferent(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is different from another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 625
bool validateDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a given number of digits.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 640
bool validateDigitsBetween(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is between a given number of digits.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 655
bool validateDimensions(string $attribute, mixed $value, mixed $parameters)

Validate the dimensions of an image matches the given values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 692
protected bool failsBasicDimensionChecks(array $parameters, int $width, int $height)

Test if the given width and height fail any conditions.

Parameters

array $parameters
int $width
int $height

Return Value

bool

in ValidatesAttributes at line 705
protected bool failsRatioCheck(array $parameters, int $width, int $height)

Determine if the given parameters fail a dimension ratio check.

Parameters

array $parameters
int $width
int $height

Return Value

bool

in ValidatesAttributes at line 760
bool validateDistinct(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is unique among other values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 774
protected array getDistinctValues(string $attribute)

Get the values to distinct between.

Parameters

string $attribute

Return Value

array

in ValidatesAttributes at line 793
protected array extractDistinctValues(string $attribute)

Extract the distinct values from the data.

Parameters

string $attribute

Return Value

array

in ValidatesAttributes at line 812
bool validateEmail(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is a valid e-mail address.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 844
protected bool isValidEmail(string $value)

Determine if a value is a valid email address using basic RFC validation.

Used by the inline check for the bare email rule token. The parameterized form (email:rfc,dns,spoof,filter,...) stays in validateEmail() and flows through the delegated path.

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 854
bool validateEncoding(string $attribute, mixed $value, array $parameters)

Validate that a value has a specific character encoding.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 870
bool validateExists(string $attribute, mixed $value, mixed $parameters)

Validate the existence of an attribute value in a database table.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 901
protected int getExistCount(mixed $connection, string $table, string $column, mixed $value, array $parameters)

Get the number of records that exist in storage.

Parameters

mixed $connection
string $table
string $column
mixed $value
array $parameters

Return Value

int

in ValidatesAttributes at line 925
bool validateUnique(string $attribute, mixed $value, mixed $parameters)

Validate the uniqueness of an attribute value on a given database table.

If a database column is not specified, the attribute will be used.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 972
protected array getUniqueIds(string|null $idColumn, array $parameters)

Get the excluded ID column and value for the unique rule.

Parameters

string|null $idColumn
array $parameters

Return Value

array

in ValidatesAttributes at line 982
protected int|string|null prepareUniqueId(mixed $id)

Prepare the given ID for querying.

Parameters

mixed $id

Return Value

int|string|null

in ValidatesAttributes at line 1004
protected array getUniqueExtra(array $parameters)

Get the extra conditions for a unique rule.

Parameters

array $parameters

Return Value

array

in ValidatesAttributes at line 1016
array parseTable(string $table)

Parse the connection / table for the unique / exists rules.

Parameters

string $table

Return Value

array

in ValidatesAttributes at line 1039
bool|string getQueryColumn(array $parameters, string $attribute)

Get the column name for an exists / unique query.

Parameters

array $parameters
string $attribute

Return Value

bool|string

in ValidatesAttributes at line 1049
string guessColumnForQuery(string $attribute)

Guess the database column from the given attribute name.

Parameters

string $attribute

Return Value

string

in ValidatesAttributes at line 1063
protected array getExtraConditions(array $segments)

Get the extra conditions for a unique / exists rule.

Parameters

array $segments

Return Value

array

in ValidatesAttributes at line 1081
bool validateExtensions(string $attribute, mixed $value, array $parameters)

Validate the extension of a file upload attribute is in a set of defined extensions.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1097
bool validateFile(string $attribute, mixed $value)

Validate the given value is a valid file.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1105
bool validateFilled(string $attribute, mixed $value)

Validate the given attribute is filled if it is present.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1119
bool validateGt(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is greater than another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1151
bool validateLt(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is less than another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1183
bool validateGte(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is greater than or equal another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1215
bool validateLte(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is less than or equal another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1247
bool validateLowercase(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is lowercase.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1259
bool validateUppercase(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is uppercase.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1269
bool validateHexColor(string $attribute, mixed $value)

Validate that an attribute is a valid HEX color.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1277
bool validateImage(string $attribute, mixed $value, array $parameters = [])

Validate the MIME type of a file is an image MIME type.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1293
bool validateIn(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is contained within a list of values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1313
bool validateInArray(string $attribute, mixed $value, mixed $parameters)

Validate that the values of an attribute are in another attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1331
bool validateInArrayKeys(string $attribute, mixed $value, array $parameters)

Validate that an array contains at least one of the given keys.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1353
bool validateInteger(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is an integer.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1365
bool validateIp(string $attribute, mixed $value)

Validate that an attribute is a valid IP.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1373
bool validateIpv4(string $attribute, mixed $value)

Validate that an attribute is a valid IPv4.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1381
bool validateIpv6(string $attribute, mixed $value)

Validate that an attribute is a valid IPv6.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1389
protected bool isValidIp(string $value)

Determine if a value is a valid IP address (any version).

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 1397
protected bool isValidIpv4(string $value)

Determine if a value is a valid IPv4 address.

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 1405
protected bool isValidIpv6(string $value)

Determine if a value is a valid IPv6 address.

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 1413
bool validateMacAddress(string $attribute, mixed $value)

Validate that an attribute is a valid MAC address.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1421
bool validateJson(string $attribute, mixed $value)

Validate the attribute is a valid JSON string.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1446
bool validateMax(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute is less than or equal to a maximum value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1462
bool validateMaxDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a maximum number of digits.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1476
bool validateMimes(string $attribute, mixed $value, mixed $parameters)

Validate the guessed extension of a file upload is in a set of file extensions.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1498
bool validateMimetypes(string $attribute, mixed $value, mixed $parameters)

Validate the MIME type of a file upload attribute is in a set of MIME types.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1518
protected bool shouldBlockPhpUpload(mixed $value, array $parameters)

Check if PHP uploads are explicitly allowed.

Parameters

mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1545
bool validateMin(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute is greater than or equal to a minimum value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1557
bool validateMinDigits(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute has a minimum number of digits.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1573
bool validateMissing(mixed $attribute, mixed $value, array<int, int|string> $parameters)

Validate that an attribute is missing.

Parameters

mixed $attribute
mixed $value
array<int, int|string> $parameters

Return Value

bool

in ValidatesAttributes at line 1583
bool validateMissingIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1601
bool validateMissingUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing unless another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1619
bool validateMissingWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when any given attribute is present.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1635
bool validateMissingWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is missing when all given attributes are present.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1651
bool validateMultipleOf(string $attribute, mixed $value, mixed $parameters)

Validate the value of an attribute is a multiple of a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1667
protected bool isMultipleOf(mixed $value, mixed $divisor)

Determine if a value is an exact multiple of a divisor.

Uses BigDecimal remainder for arbitrary-precision comparison. Both value and divisor must be numeric; the exception translation wrapping stays in the caller (validateMultipleOf) for non-numeric cases, but the BigDecimal exception is thrown from here since that's where the math operation lives.

Parameters

mixed $value
mixed $divisor

Return Value

bool

in ValidatesAttributes at line 1700
bool validateNullable()

"Indicate" validation should pass if value is null.

Always returns true, just lets us put "nullable" in rules.

Return Value

bool

in ValidatesAttributes at line 1710
bool validateNotIn(string $attribute, mixed $value, mixed $parameters)

Validate an attribute is not contained within a list of values.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1718
bool validateNumeric(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is numeric.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 1730
bool validatePresent(string $attribute, mixed $value)

Validate that an attribute exists even if not filled.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1740
bool validatePresentIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1758
bool validatePresentUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present unless another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1776
bool validatePresentWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when any given attribute is present.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1792
bool validatePresentWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is present when all given attributes are present.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1808
bool validateRegex(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute passes a regular expression check.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1824
bool validateNotRegex(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not pass a regular expression check.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1838
bool validateRequired(string $attribute, mixed $value)

Validate that a required attribute exists.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1859
bool validateRequiredIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1879
bool validateRequiredIfAccepted(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute was "accepted".

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1893
bool validateRequiredIfDeclined(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute was "declined".

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1907
bool validateProhibited(string $attribute, mixed $value)

Validate that an attribute does not exist or is an empty string.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 1915
bool validateProhibitedIf(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1931
bool validateProhibitedIfAccepted(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute was "accepted".

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1945
bool validateProhibitedIfDeclined(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist when another attribute was "declined".

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1959
bool validateProhibitedUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute does not exist unless another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1975
bool validateProhibits(string $attribute, mixed $value, mixed $parameters)

Validate that other attributes do not exist when this attribute exists.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 1991
bool validateExclude()

Indicate that an attribute is excluded.

Return Value

bool

in ValidatesAttributes at line 1999
bool validateExcludeIf(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute has a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2015
bool validateExcludeUnless(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute does not have a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2027
bool validateRequiredUnless(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute does not have a given value.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2043
bool validateExcludeWith(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute presents.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2057
bool validateExcludeWithout(string $attribute, mixed $value, mixed $parameters)

Indicate that an attribute should be excluded when another attribute is missing.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2073
array parseDependentRuleParameters(array $parameters)

Prepare the values and the other value for validation.

Parameters

array $parameters

Return Value

array

in ValidatesAttributes at line 2093
protected bool shouldConvertToBoolean(string $parameter)

Check if parameter should be converted to boolean.

Parameters

string $parameter

Return Value

bool

in ValidatesAttributes at line 2101
protected array convertValuesToBoolean(array $values)

Convert the given values to boolean if they are string "true" / "false".

Parameters

array $values

Return Value

array

in ValidatesAttributes at line 2118
protected array convertValuesToNull(array $values)

Convert the given values to null if they are string "null".

Parameters

array $values

Return Value

array

in ValidatesAttributes at line 2128
bool validateRequiredWith(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when any other attribute exists.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2140
bool validateRequiredWithAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when all other attributes exist.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2152
bool validateRequiredWithout(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when another attribute does not.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2164
bool validateRequiredWithoutAll(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute exists when all other attributes do not.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2176
protected bool anyFailingRequired(array $attributes)

Determine if any of the given attributes fail the required test.

Parameters

array $attributes

Return Value

bool

in ValidatesAttributes at line 2190
protected bool allFailingRequired(array $attributes)

Determine if all of the given attributes fail the required test.

Parameters

array $attributes

Return Value

bool

in ValidatesAttributes at line 2206
bool validateSame(string $attribute, mixed $value, mixed $parameters)

Validate that two attributes match.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2220
bool validateSize(string $attribute, mixed $value, mixed $parameters)

Validate the size of an attribute.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2232
bool validateSometimes()

"Validate" optional attributes.

Always returns true, just lets us put sometimes in rules.

Return Value

bool

in ValidatesAttributes at line 2242
bool validateStartsWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute starts with a given substring.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2252
bool validateDoesntStartWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute does not start with a given substring.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2262
bool validateEndsWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute ends with a given substring.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2272
bool validateDoesntEndWith(string $attribute, mixed $value, mixed $parameters)

Validate the attribute does not end with a given substring.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2280
bool validateString(string $attribute, mixed $value)

Validate that an attribute is a string.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 2288
bool validateTimezone(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is a valid timezone.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 2299
bool validateUrl(string $attribute, mixed $value, array $parameters = [])

Validate that an attribute is a valid URL.

Parameters

string $attribute
mixed $value
array $parameters

Return Value

bool

in ValidatesAttributes at line 2307
bool validateUlid(string $attribute, mixed $value)

Validate that an attribute is a valid ULID.

Parameters

string $attribute
mixed $value

Return Value

bool

in ValidatesAttributes at line 2315
protected bool isValidUlid(string $value)

Determine if a value is a valid ULID.

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 2325
bool validateUuid(string $attribute, mixed $value, mixed $parameters)

Validate that an attribute is a valid UUID.

Parameters

string $attribute
mixed $value
mixed $parameters

Return Value

bool

in ValidatesAttributes at line 2347
protected bool isValidUuid(string $value)

Determine if a value is a valid UUID (any version).

Used by the inline check for the bare uuid rule token. The parameterized form (uuid:4, uuid:max) stays in validateUuid() and flows through the delegated path.

Parameters

string $value

Return Value

bool

in ValidatesAttributes at line 2355
protected float|int|string getSize(string $attribute, mixed $value)

Get the size of an attribute.

Parameters

string $attribute
mixed $value

Return Value

float|int|string

in ValidatesAttributes at line 2389
protected float|int|string sizeOf(mixed $value, SizeMode $mode)

Compute a value's "size" given a pre-resolved mode.

Mirrors getSize() but takes an explicit SizeMode instead of scanning sibling rules at runtime. Uses value-first dispatch: when mode is Numeric AND the value is numeric, returns the trimmed numeric value; otherwise falls through to array count / file size / string length.

This ordering is load-bearing: a mode-first version would throw NumberFormatException when a min:X|numeric rule runs before the numeric type check with a non-numeric value (e.g., 'abc'). getSize() falls back to string length in that situation; this helper must match.

Parameters

mixed $value
SizeMode $mode

Return Value

float|int|string

in ValidatesAttributes at line 2409
bool isValidFileInstance(mixed $value)

Check that the given value is a valid file instance.

Parameters

mixed $value

Return Value

bool

in ValidatesAttributes at line 2423
protected bool compare(mixed $first, mixed $second, string $operator)

Determine if a comparison passes between the given values.

Parameters

mixed $first
mixed $second
string $operator

Return Value

bool

Exceptions

InvalidArgumentException

in ValidatesAttributes at line 2440
array|null parseNamedParameters(array $parameters)

Parse named parameters to $key => $value items.

Parameters

array $parameters

Return Value

array|null

in ValidatesAttributes at line 2456
void requireParameterCount(int $count, array $parameters, string $rule)

Require a certain number of parameters to be present.

Parameters

int $count
array $parameters
string $rule

Return Value

void

Exceptions

InvalidArgumentException

in ValidatesAttributes at line 2466
protected bool isSameType(mixed $first, mixed $second)

Check if the parameters are of the same type.

Parameters

mixed $first
mixed $second

Return Value

bool

in ValidatesAttributes at line 2474
protected void shouldBeNumeric(string $attribute, string $rule)

Adds the existing rule to the numericRules array if the attribute's value is numeric.

Parameters

string $attribute
string $rule

Return Value

void

in ValidatesAttributes at line 2484
protected mixed trim(mixed $value)

Trim the value if it is a string.

Parameters

mixed $value

Return Value

mixed

in ValidatesAttributes at line 2492
protected mixed ensureExponentWithinAllowedRange(string $attribute, mixed $value)

Ensure the exponent is within the allowed range.

Parameters

string $attribute
mixed $value

Return Value

mixed

in PlanExecutor at line 63
protected void executeCompiledPlans(array $compiledPlans)

Execute all compiled plans against the validation data.

This is the ONLY execution path — every rule (inline or delegated) flows through this loop. Per-check fresh reads of $value and $exists match validateAttribute()'s per-rule getValue() call.

Parameters

array $compiledPlans

Return Value

void

in PlanExecutor at line 142
protected bool executeInline(InlineCheck $check, mixed $value, string $attribute)

Execute an inline check against a value.

Dispatches via exhaustive match over CheckType — no default arm. Adding a CheckType case without a handler here fails PHPStan and throws UnhandledMatchError at runtime. Silent passes are impossible.

Each arm replicates the exact logic of the corresponding validate*() method in ValidatesAttributes, but without parameter parsing, attribute context lookups, or dynamic method dispatch.

Parameters

InlineCheck $check
mixed $value
string $attribute

Return Value

bool

in Validator at line 325
__construct(Translator $translator, array $data, array $rules, array $messages = [], array $attributes = [])

Create a new Validator instance.

Parameters

Translator $translator

the Translator implementation

array $data
array $rules
array $messages
array $attributes

in Validator at line 347
array parseData(array $data)

Parse the data array, converting dots and asterisks.

Parameters

array $data

Return Value

array

in Validator at line 372
protected array replacePlaceholders(array $data)

Replace the placeholders used in data keys.

Parameters

array $data

Return Value

array

in Validator at line 388
protected string replacePlaceholderInString(string $value)

Replace the placeholders in the given string.

Parameters

string $value

Return Value

string

in Validator at line 400
protected array replaceDotPlaceholderInParameters(array $parameters)

Replace each field parameter dot placeholder with dot.

Parameters

array $parameters

Return Value

array

in Validator at line 410
Validator after(callable|string $callback)

Add an after validation callback.

Parameters

callable|string $callback

Return Value

Validator

at line 287
bool passes()

Determine if the data passes the validation rules using the legacy path.

Return Value

bool

in Validator at line 502
protected array compileRules()

Compile all attribute rules into AttributePlans.

For the base Validator class, rules are compiled with inlining and cached worker-lifetime. Subclasses compile everything as DelegatedCheck to preserve validate*() overrides.

Return Value

array

in Validator at line 544
protected bool compiledPlansContainValidatorAwareRules()

Determine if any compiled plan contains a ValidatorAwareRule.

ValidatorAwareRule implementations receive the live validator via setValidator($this) and can mutate $this->data via setValue()/setData(). This makes pre-evaluation of exclude conditions unsafe because the pre-pass reads data before execution.

Return Value

bool

in Validator at line 565
protected void preEvaluateExclusions()

Pre-evaluate exclude_unless / exclude_if conditions before the main loop.

Only called when $canPreOptimize is true (base Validator, no extensions, no rule objects). Handles both string form ('exclude_unless:field,value') and array-tuple form. Safety-skips rules requiring parseDependentRuleParameters type conversions so they flow through the normal delegated path.

Return Value

void

in Validator at line 688
protected void maybeBatchDatabaseChecks()

Build a PrecomputedPresenceVerifier for wildcard-expanded exists/unique rules by batching their lookups into single whereIn queries.

Scans rules using the validator's own parsing methods (parseTable, getQueryColumn, getExtraConditions, getUniqueIds) so all rule forms (string, array, object) and table specifications (plain, model class, connection-prefixed) are handled correctly with zero duplication.

Return Value

void

in Validator at line 995
bool fails()

Determine if the data fails the validation rules.

Return Value

bool

in Validator at line 1003
mixed whenPasses(callable $callback, callable|null $default = null)

Execute the callback if the data passes the validation rules.

Parameters

callable $callback
callable|null $default

Return Value

mixed

in Validator at line 1018
mixed whenFails(callable $callback, callable|null $default = null)

Execute the callback if the data fails the validation rules.

Parameters

callable $callback
callable|null $default

Return Value

mixed

in Validator at line 1033
protected bool shouldBeExcluded(string $attribute)

Determine if the attribute should be excluded.

Parameters

string $attribute

Return Value

bool

in Validator at line 1073
protected void removeAttribute(string $attribute)

Remove the given attribute.

Parameters

string $attribute

Return Value

void

in Validator at line 1084
array validate()

Run the validator's rules against its data.

Return Value

array

Exceptions

ValidationException

in Validator at line 1096
array validateWithBag(string $errorBag)

Run the validator's rules against its data.

Parameters

string $errorBag

Return Value

array

Exceptions

ValidationException

in Validator at line 1110
array|ValidatedInput safe(array|null $keys = null)

Get a validated input container for the validated input.

Parameters

array|null $keys

Return Value

array|ValidatedInput

in Validator at line 1122
array validated()

Get the attributes and values that were validated.

Return Value

array

Exceptions

ValidationException

in Validator at line 1157
protected void validateAttribute(string $attribute, array|object|string $rule)

Validate a given attribute against a rule.

Parameters

string $attribute
array|object|string $rule

Return Value

void

in Validator at line 1214
protected bool dependsOnOtherFields(object|string $rule)

Determine if the given rule depends on other fields.

Parameters

object|string $rule

Return Value

bool

in Validator at line 1224
protected array getExplicitKeys(string $attribute)

Get the explicit keys from an attribute flattened with dot notation.

E.g. 'foo.1.bar.spark.baz' -> [1, 'spark'] for 'foo..bar..baz'

Parameters

string $attribute

Return Value

array

in Validator at line 1242
protected string getPrimaryAttribute(string $attribute)

Get the primary attribute name.

For example, if "name.0" is given, "name.*" will be returned.

Parameters

string $attribute

Return Value

string

in Validator at line 1270
protected array replaceDotInParameters(array $parameters)

Replace each field parameter which has an escaped dot with the dot placeholder.

Parameters

array $parameters

Return Value

array

in Validator at line 1280
protected array replaceAsterisksInParameters(array $parameters, array $keys)

Replace each field parameter which has asterisks with the given keys.

Parameters

array $parameters
array $keys

Return Value

array

in Validator at line 1290
protected bool isValidatable(object|string $rule, string $attribute, mixed $value)

Determine if the attribute is validatable.

Parameters

object|string $rule
string $attribute
mixed $value

Return Value

bool

in Validator at line 1305
protected bool presentOrRuleIsImplicit(object|string $rule, string $attribute, mixed $value)

Determine if the field is present, or the rule implies required.

Parameters

object|string $rule
string $attribute
mixed $value

Return Value

bool

in Validator at line 1322
protected bool isImplicit(object|string $rule)

Determine if a given rule implies the attribute is required.

Parameters

object|string $rule

Return Value

bool

in Validator at line 1331
protected bool passesOptionalCheck(string $attribute)

Determine if the attribute passes any optional check.

Parameters

string $attribute

Return Value

bool

in Validator at line 1351
protected bool isNotNullIfMarkedAsNullable(object|string $rule, string $attribute)

Determine if the attribute fails the nullable check.

Parameters

object|string $rule
string $attribute

Return Value

bool

in Validator at line 1374
protected bool hasNotFailedPreviousRuleIfPresenceRule(object|string $rule, string $attribute)

Determine if it's a necessary presence validation.

This is to avoid possible database type comparison errors.

Parameters

object|string $rule
string $attribute

Return Value

bool

in Validator at line 1382
protected void validateUsingCustomRule(string $attribute, mixed $value, Rule $rule)

Validate an attribute using a custom rule object.

Parameters

string $attribute
mixed $value
Rule $rule

Return Value

void

in Validator at line 1436
protected bool shouldStopValidating(string $attribute)

Check if we should stop further validations on a given attribute.

Parameters

string $attribute

Return Value

bool

in Validator at line 1462
void addFailure(string $attribute, string $rule, array $parameters = [])

Add a failed rule and error message to the collection.

Parameters

string $attribute
string $rule
array $parameters

Return Value

void

in Validator at line 1494
protected void excludeAttribute(string $attribute)

Add the given attribute to the list of excluded attributes.

Parameters

string $attribute

Return Value

void

in Validator at line 1504
array valid()

Returns the data which was valid.

Return Value

array

in Validator at line 1519
array invalid()

Returns the data which was invalid.

Return Value

array

in Validator at line 1544
protected array attributesThatHaveMessages()

Generate an array of all attributes that have messages.

Return Value

array

in Validator at line 1556
array failed()

Get the failed validation rules.

Return Value

array

in Validator at line 1564
MessageBag messages()

Get the message container for the validator.

Return Value

MessageBag

in Validator at line 1576
MessageBag errors()

An alternative more semantic shortcut to the message container.

Return Value

MessageBag

in Validator at line 1584
MessageBag getMessageBag()

Get the messages for the instance.

Return Value

MessageBag

in Validator at line 1592
bool hasRule(string $attribute, array|string $rules)

Determine if the given attribute has a rule in the given set.

Parameters

string $attribute
array|string $rules

Return Value

bool

in Validator at line 1600
protected array|null getRule(string $attribute, array|string $rules)

Get a rule and its parameters for a given attribute.

Parameters

string $attribute
array|string $rules

Return Value

array|null

in Validator at line 1622
array attributes()

Get the data under validation.

Return Value

array

in Validator at line 1630
array getData()

Get the data under validation.

Return Value

array

in Validator at line 1638
Validator setData(array $data)

Set the data under validation.

Parameters

array $data

Return Value

Validator

in Validator at line 1650
mixed getValue(string $attribute)

Get the value of a given attribute.

Parameters

string $attribute

Return Value

mixed

in Validator at line 1658
void setValue(string $attribute, mixed $value)

Set the value of a given attribute.

Parameters

string $attribute
mixed $value

Return Value

void

in Validator at line 1666
array getRules()

Get the validation rules.

Return Value

array

in Validator at line 1674
array getRulesWithoutPlaceholders()

Get the validation rules with key placeholders removed.

Return Value

array

in Validator at line 1685
Validator setRules(array $rules)

Set the validation rules.

Parameters

array $rules

Return Value

Validator

in Validator at line 1704
Validator appendRules(array $rules)

Append new validation rules to the validator.

Parameters

array $rules

Return Value

Validator

at line 269
void addRules(array $rules)

Override addRules to use the legacy O(n²) wildcard expansion parser.

Parameters

array $rules

Return Value

void

in Validator at line 1739
Validator sometimes(array|string $attribute, array|string $rules, callable $callback)

Add conditions to a given field based on a Closure.

Parameters

array|string $attribute
array|string $rules
callable $callback

Return Value

Validator

in Validator at line 1780
Validator stopOnFirstFailure(bool $stopOnFirstFailure = true)

Instruct the validator to stop validating after the first rule failure.

Parameters

bool $stopOnFirstFailure

Return Value

Validator

in Validator at line 1790
void addExtensions(array $extensions)

Register an array of custom validator extensions.

Parameters

array $extensions

Return Value

void

in Validator at line 1804
void addImplicitExtensions(array $extensions)

Register an array of custom implicit validator extensions.

Parameters

array $extensions

Return Value

void

in Validator at line 1816
void addDependentExtensions(array $extensions)

Register an array of custom dependent validator extensions.

Parameters

array $extensions

Return Value

void

in Validator at line 1828
void addExtension(string $rule, Closure|string $extension)

Register a custom validator extension.

Parameters

string $rule
Closure|string $extension

Return Value

void

in Validator at line 1836
void addImplicitExtension(string $rule, Closure|string $extension)

Register a custom implicit validator extension.

Parameters

string $rule
Closure|string $extension

Return Value

void

in Validator at line 1846
void addDependentExtension(string $rule, Closure|string $extension)

Register a custom dependent validator extension.

Parameters

string $rule
Closure|string $extension

Return Value

void

in Validator at line 1856
void addReplacers(array $replacers)

Register an array of custom validator message replacers.

Parameters

array $replacers

Return Value

void

in Validator at line 1870
void addReplacer(string $rule, Closure|string $replacer)

Register a custom validator message replacer.

Parameters

string $rule
Closure|string $replacer

Return Value

void

in Validator at line 1878
Validator setCustomMessages(array $messages)

Set the custom messages for the validator.

Parameters

array $messages

Return Value

Validator

in Validator at line 1888
Validator setAttributeNames(array $attributes)

Set the custom attributes on the validator.

Parameters

array $attributes

Return Value

Validator

in Validator at line 1898
Validator addCustomAttributes(array $attributes)

Add custom attributes to the validator.

Parameters

array $attributes

Return Value

Validator

in Validator at line 1908
Validator setImplicitAttributesFormatter(callable|null $formatter = null)

Set the callback that used to format an implicit attribute.

Parameters

callable|null $formatter

Return Value

Validator

in Validator at line 1918
Validator setValueNames(array $values)

Set the custom values on the validator.

Parameters

array $values

Return Value

Validator

in Validator at line 1928
Validator addCustomValues(array $customValues)

Add the custom values for the validator.

Parameters

array $customValues

Return Value

Validator

in Validator at line 1938
void setFallbackMessages(array $messages)

Set the fallback messages for the validator.

Parameters

array $messages

Return Value

void

in Validator at line 1948
PresenceVerifierInterface getPresenceVerifier(string|null $connection = null)

Get the Presence Verifier implementation.

Parameters

string|null $connection

Return Value

PresenceVerifierInterface

Exceptions

RuntimeException

in Validator at line 1967
void setPresenceVerifier(PresenceVerifierInterface $presenceVerifier)

Set the Presence Verifier implementation.

Parameters

PresenceVerifierInterface $presenceVerifier

Return Value

void

in Validator at line 1977
string getException()

Get the exception to throw upon failed validation.

Return Value

string

in Validator at line 1989
Validator setException(string|Throwable $exception)

Set the exception to throw upon failed validation.

Parameters

string|Throwable $exception

Return Value

Validator

Exceptions

InvalidArgumentException

in Validator at line 2005
Validator ensureExponentWithinAllowedRangeUsing(Closure $callback)

Ensure exponents are within range using the given callback.

Parameters

Closure $callback

Return Value

Validator

in Validator at line 2015
Translator getTranslator()

Get the Translator implementation.

Return Value

Translator

in Validator at line 2023
void setTranslator(Translator $translator)

Set the Translator implementation.

Parameters

Translator $translator

Return Value

void

in Validator at line 2031
void setContainer(Container $container)

Set the IoC container instance.

Parameters

Container $container

Return Value

void

in Validator at line 2039
protected bool|null callExtension(string $rule, array $parameters)

Call a custom validator extension.

Parameters

string $rule
array $parameters

Return Value

bool|null

in Validator at line 2056
protected bool callClassBasedExtension(string $callback, array $parameters)

Call a class based validator extension.

Parameters

string $callback
array $parameters

Return Value

bool

in Validator at line 2068
static protected string encodeAttributeWithPlaceholder(string $attribute)

Encode the attribute with the placeholder hash.

Parameters

string $attribute

Return Value

string

in Validator at line 2076
static protected string decodeAttributeWithPlaceholder(string $attribute)

Decode an attribute with a placeholder hash.

Parameters

string $attribute

Return Value

string

in Validator at line 2084
static void flushState()

Flush all static state.

Return Value

void

in Validator at line 2094
mixed __call(string $method, array $parameters)

Handle dynamic calls to class methods.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException