Methods |
public
|
keys(): array
Get the keys present in the message bag.
Get the keys present in the message bag.
Implemented by
|
#
|
public
|
add(string $key, string $message): $this
Add a message to the bag.
Add a message to the bag.
Implemented by
|
#
|
public
|
merge(MessageProvider|array $messages): $this
Merge a new array of messages into the bag.
Merge a new array of messages into the bag.
Implemented by
|
#
|
public
|
has(string|array $key): bool
Determine if messages exist for a given key.
Determine if messages exist for a given key.
Implemented by
|
#
|
public
|
first(string|null $key = null, string|null $format = null): string
Get the first message from the bag for a given key.
Get the first message from the bag for a given key.
Implemented by
|
#
|
public
|
get(string $key, string|null $format = null): array
Get all of the messages from the bag for a given key.
Get all of the messages from the bag for a given key.
Implemented by
|
#
|
public
|
all(string|null $format = null): array
Get all of the messages for every key in the bag.
Get all of the messages for every key in the bag.
Implemented by
|
#
|
public
|
forget(string $key): $this
Remove a message from the bag.
Remove a message from the bag.
Implemented by
|
#
|
public
|
getMessages(): array
Get the raw messages in the container.
Get the raw messages in the container.
Implemented by
|
#
|
public
|
getFormat(): string
Get the default message format.
Get the default message format.
Implemented by
|
#
|
public
|
setFormat(string $format = ':message'): $this
Set the default message format.
Set the default message format.
Implemented by
|
#
|
public
|
isEmpty(): bool
Determine if the message bag has any messages.
Determine if the message bag has any messages.
Implemented by
|
#
|
public
|
isNotEmpty(): bool
Determine if the message bag has any messages.
Determine if the message bag has any messages.
Implemented by
|
#
|