CompilesEchos
trait CompilesEchos
Properties
| protected array<string, callable> | $echoHandlers | Custom rendering callbacks for stringable objects. |
Methods
Add a handler to be executed before echoing a given class.
Compile Blade echos into valid PHP.
Get the echo methods in the proper order for compilation.
Compile the "raw" echo statements.
Compile the "regular" echo statements.
Compile the escaped echo statements.
Add an instance of the blade echo handler to the start of the compiled string.
Wrap the echoable value in an echo handler if applicable.
Apply the echo handler for the value if it exists.
Details
at line 22
void
stringable(string|callable $class, callable|null $handler = null)
Add a handler to be executed before echoing a given class.
at line 34
string
compileEchos(string $value)
Compile Blade echos into valid PHP.
at line 48
protected array
getEchoMethods()
Get the echo methods in the proper order for compilation.
at line 60
protected string
compileRawEchos(string $value)
Compile the "raw" echo statements.
at line 78
protected string
compileRegularEchos(string $value)
Compile the "regular" echo statements.
at line 96
protected string
compileEscapedEchos(string $value)
Compile the escaped echo statements.
at line 114
protected string
addBladeCompilerVariable(string $result)
Add an instance of the blade echo handler to the start of the compiled string.
at line 122
protected string
wrapInEchoHandler(string $value)
Wrap the echoable value in an echo handler if applicable.
at line 136
mixed
applyEchoHandler(mixed $value)
Apply the echo handler for the value if it exists.