Showing 10 of 1,204 results.

if | Blade Compiler

Register an "if" statement directive. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::if method. You do not need to manually call this method to sync compiler information if you use the default compiler factory...

aliasComponent | Blade Compiler

Register a component alias directive. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::aliasComponent method. You do not need to manually call this method to sync compiler information if you use the default...

getExtensions | Blade Compiler

Get the extensions used by the compiler. Retrieves all extensions registered with the compiler via the extend method. 1 <?php 2 3 public function getExtensions ( ) : array ;

setThrowExceptionOnUnknownComponentClass | Blade Compiler

Sets whether the compiler will fail when it encounters unknown component classes. Argument Description $doThrow Whether to throw on unknown component classes. 1 <?php 2 3 public function setThrowExceptionOnUnknownComponentClass ( 4 bool $ doThrow...

setPrecompilers | Blade Compiler

Sets the internal precompilers. In default setups, this is set to the value of the Illuminate\View\Compilers\BladeCompiler::$precompilers protected property. Argument Description $precompilers The precompilers. 1 <?php 2 3 public function...

compileString | Blade Compiler

Compile the given Blade template contents. Argument Description $template The template. 1 <?php 2 3 public function compileString ( 4 string $ template 5 ) : string ;

setEchoHandlers | Blade Compiler

Sets and overrides all existing echo handlers. In default setups, this is set to the value of the Illuminate\View\Compilers\BladeCompiler::$echoHandlers protected property. Argument Description $handlers The echo handlers. 1 <?php 2 3 public...

Filter Search