Methods |
public
|
validate(): array
Run the validator's rules against its data.
Run the validator's rules against its data.
Throws
Implemented by
|
#
|
public
|
validated(): array
Get the attributes and values that were validated.
Get the attributes and values that were validated.
Throws
Implemented by
|
#
|
public
|
fails(): bool
Determine if the data fails the validation rules.
Determine if the data fails the validation rules.
Implemented by
|
#
|
public
|
failed(): array
Get the failed validation rules.
Get the failed validation rules.
Implemented by
|
#
|
public
|
sometimes(string|array $attribute, string|array $rules, callable $callback): $this
Add conditions to a given field based on a Closure.
Add conditions to a given field based on a Closure.
Implemented by
|
#
|
public
|
after(callable|string $callback): $this
Add an after validation callback.
Add an after validation callback.
Implemented by
|
#
|
public
|
errors(): MessageBag
Get all of the validation error messages.
Get all of the validation error messages.
Implemented by
|
#
|