Methods |
public
|
__construct(Validator $validator, Response|null $response = null, string $errorBag = 'default'): void
Create a new exception instance.
Create a new exception instance.
Overrides
|
#
|
public
static
|
withMessages(array $messages): static
Create a new validation exception from a plain array of messages.
Create a new validation exception from a plain array of messages.
|
#
|
protected
static
|
summarize(Validator $validator): string
Create an error message summary from the validation errors.
Create an error message summary from the validation errors.
|
#
|
public
|
errors(): array
Get all of the validation error messages.
Get all of the validation error messages.
|
#
|
public
|
status(int $status): $this
Set the HTTP status code to be used for the response.
Set the HTTP status code to be used for the response.
|
#
|
public
|
errorBag(string $errorBag): $this
Set the error bag on the exception.
Set the error bag on the exception.
|
#
|
public
|
redirectTo(string $url): $this
Set the URL to redirect to on a validation error.
Set the URL to redirect to on a validation error.
|
#
|
public
|
getResponse(): Response|null
Get the underlying response instance.
Get the underlying response instance.
|
#
|