Methods |
protected
|
getMessage(string $attribute, string $rule): string
Get the validation message for an attribute and rule.
Get the validation message for an attribute and rule.
|
#
|
protected
|
getInlineMessage(string $attribute, string $rule): string|null
Get the proper inline error message for standard and size rules.
Get the proper inline error message for standard and size rules.
|
#
|
protected
|
getFromLocalArray(string $attribute, string $lowerRule, array|null $source = null): string|null
Get the inline message for a rule if it exists.
Get the inline message for a rule if it exists.
|
#
|
protected
|
getCustomMessageFromTranslator(array|string $keys): string
Get the custom error message from the translator.
Get the custom error message from the translator.
|
#
|
protected
|
getWildcardCustomMessages(array $messages, string $search, string $default): string
Check the given messages for a wildcard key.
Check the given messages for a wildcard key.
|
#
|
protected
|
getSizeMessage(string $attribute, string $rule): string
Get the proper error message for an attribute and size rule.
Get the proper error message for an attribute and size rule.
|
#
|
protected
|
getAttributeType(string $attribute): string
Get the data type of the given attribute.
Get the data type of the given attribute.
|
#
|
public
|
makeReplacements(string $message, string $attribute, string $rule, array $parameters): string
Replace all error message place-holders with actual values.
Replace all error message place-holders with actual values.
|
#
|
public
|
getDisplayableAttribute(string $attribute): string
Get the displayable name of the attribute.
Get the displayable name of the attribute.
|
#
|
protected
|
getAttributeFromTranslations(string $name): string|null
Get the given attribute from the attribute translations.
Get the given attribute from the attribute translations.
|
#
|
protected
|
getAttributeFromLocalArray(string $attribute, array|null $source = null): string|null
Get the custom name for an attribute if it exists in the given array.
Get the custom name for an attribute if it exists in the given array.
|
#
|
protected
|
replaceAttributePlaceholder(string $message, string $value): string
Replace the :attribute placeholder in the given message.
Replace the :attribute placeholder in the given message.
|
#
|
protected
|
replaceIndexPlaceholder(string $message, string $attribute): string
Replace the :index placeholder in the given message.
Replace the :index placeholder in the given message.
|
#
|
protected
|
replacePositionPlaceholder(string $message, string $attribute): string
Replace the :position placeholder in the given message.
Replace the :position placeholder in the given message.
|
#
|
protected
|
replaceIndexOrPositionPlaceholder(
string $message,
string $attribute,
string $placeholder,
Closure|null $modifier = null,
): string
Replace the :index or :position placeholder in the given message.
Replace the :index or :position placeholder in the given message.
|
#
|
protected
|
numberToIndexOrPositionWord(int $value): string
Get the word for a index or position segment.
Get the word for a index or position segment.
|
#
|
protected
|
replaceInputPlaceholder(string $message, string $attribute): string
Replace the :input placeholder in the given message.
Replace the :input placeholder in the given message.
|
#
|
public
|
getDisplayableValue(string $attribute, mixed $value): string
Get the displayable name of the value.
Get the displayable name of the value.
|
#
|
protected
|
getAttributeList(array $values): array
Transform an array of attributes to their displayable form.
Transform an array of attributes to their displayable form.
|
#
|
protected
|
callReplacer(string $message, string $attribute, string $rule, array $parameters, Validator $validator): string|null
Call a custom validator message replacer.
Call a custom validator message replacer.
|
#
|
protected
|
callClassBasedReplacer(
string $callback,
string $message,
string $attribute,
string $rule,
array $parameters,
Validator $validator,
): string
Call a class based validator message replacer.
Call a class based validator message replacer.
|
#
|