The get()
method retrieves the value of an attribute by its name. If the attribute is not found, it returns the specified default value.
Description
public Attributes::get(string $name, \Stringable|string|null $default = null): ?string
Parameters
name
The name of the attribute to retrieve.
default
The default value to return if the attribute is not found. This is optional, and its default value is null
.
Return Value
Returns the attribute value as a string, or the default value if the attribute is not present.
Exceptions
None