Methods |
public
|
__construct(array $messages = []): void
Create a new message bag instance.
Create a new message bag instance.
|
#
|
public
|
keys(): array
Get the keys present in the message bag.
Get the keys present in the message bag.
Implements
|
#
|
public
|
add(string $key, string $message): $this
Add a message to the message bag.
Add a message to the message bag.
Implements
|
#
|
public
|
addIf(bool $boolean, string $key, string $message): $this
Add a message to the message bag if the given conditional is "true".
Add a message to the message bag if the given conditional is "true".
|
#
|
protected
|
isUnique(string $key, string $message): bool
Determine if a key and message combination already exists.
Determine if a key and message combination already exists.
|
#
|
public
|
merge(MessageProvider|array $messages): $this
Merge a new array of messages into the message bag.
Merge a new array of messages into the message bag.
Implements
|
#
|
public
|
has(array|string|null $key): bool
Determine if messages exist for all of the given keys.
Determine if messages exist for all of the given keys.
Implements
|
#
|
public
|
hasAny(array|string|null $keys = []): bool
Determine if messages exist for any of the given keys.
Determine if messages exist for any of the given keys.
|
#
|
public
|
missing(array|string|null $key): bool
Determine if messages don't exist for all of the given keys.
Determine if messages don't exist for all of the given keys.
|
#
|
public
|
first(string|null $key = null, string|null $format = null): string
Get the first message from the message bag for a given key.
Get the first message from the message bag for a given key.
Implements
|
#
|
public
|
get(string $key, string|null $format = null): array
Get all of the messages from the message bag for a given key.
Get all of the messages from the message bag for a given key.
Implements
|
#
|
protected
|
getMessagesForWildcardKey(string $key, string|null $format): array
Get the messages for a wildcard key.
Get the messages for a wildcard key.
|
#
|
public
|
all(string|null $format = null): array
Get all of the messages for every key in the message bag.
Get all of the messages for every key in the message bag.
Implements
|
#
|
public
|
unique(string|null $format = null): array
Get all of the unique messages for every key in the message bag.
Get all of the unique messages for every key in the message bag.
|
#
|
public
|
forget(string $key): $this
Remove a message from the message bag.
Remove a message from the message bag.
Implements
|
#
|
protected
|
transform(array $messages, string $format, string $messageKey): array
Format an array of messages.
Format an array of messages.
|
#
|
protected
|
checkFormat(string $format): string
Get the appropriate format based on the given format.
Get the appropriate format based on the given format.
|
#
|
public
|
messages(): array
Get the raw messages in the message bag.
Get the raw messages in the message bag.
|
#
|
public
|
getMessages(): array
Get the raw messages in the message bag.
Get the raw messages in the message bag.
Implements
|
#
|
public
|
getMessageBag(): MessageBag
Get the messages for the instance.
Get the messages for the instance.
Implements
|
#
|
public
|
getFormat(): string
Get the default message format.
Get the default message format.
Implements
|
#
|
public
|
setFormat(string $format = ':message'): MessageBag
Set the default message format.
Set the default message format.
Implements
|
#
|
public
|
isEmpty(): bool
Determine if the message bag has any messages.
Determine if the message bag has any messages.
Implements
|
#
|
public
|
isNotEmpty(): bool
Determine if the message bag has any messages.
Determine if the message bag has any messages.
Implements
|
#
|
public
|
any(): bool
Determine if the message bag has any messages.
Determine if the message bag has any messages.
|
#
|
public
|
count(): int
Get the number of messages in the message bag.
Get the number of messages in the message bag.
Implements
|
#
|
public
|
toArray(): array
Get the instance as an array.
Get the instance as an array.
Implements
|
#
|
public
|
jsonSerialize(): array
Convert the object into something JSON serializable.
Convert the object into something JSON serializable.
Implements
|
#
|
public
|
toJson(int $options = 0): string
Convert the object to its JSON representation.
Convert the object to its JSON representation.
Implements
|
#
|
public
|
__toString(): string
Convert the message bag to its string representation.
Convert the message bag to its string representation.
Implements
|
#
|