ViewErrorBag
class ViewErrorBag implements Countable, Stringable mixin MessageBag
Properties
| protected array | $bags | The array of the view error bags. |
Methods
Checks if a named MessageBag exists in the bags.
Get a MessageBag instance from the bags.
Get all the bags.
Determine if the default message bag has any messages.
Get the number of messages in the default bag.
Dynamically call methods on the default bag.
Dynamically access a view error bag.
Convert the default bag to its string representation.
Details
at line 24
bool
hasBag(string $key = 'default')
Checks if a named MessageBag exists in the bags.
at line 32
getBag(string $key)
Get a MessageBag instance from the bags.
at line 40
array
getBags()
Get all the bags.
at line 48
ViewErrorBag
put(string $key, MessageBag $bag)
Add a new MessageBag instance to the bags.
at line 58
bool
any()
Determine if the default message bag has any messages.
at line 66
int
count()
Get the number of messages in the default bag.
at line 74
mixed
__call(string $method, array $parameters)
Dynamically call methods on the default bag.
at line 85
MessageBag
__get(string $key)
Dynamically access a view error bag.
at line 96
__set(string $key, MessageBag $value)
Dynamically set a view error bag.
at line 104
string
__toString()
Convert the default bag to its string representation.