Method |
Description |
|
compile ( string $path = null ) : void |
Compile the view at the given path. |
|
compileEchoDefaults ( string $value ) : string |
Compile the default values for the echo statement. |
|
compileString ( string $value ) : string |
Compile the given Blade template contents. |
|
directive ( string $name, callable $handler ) : void |
Register a handler for custom directives. |
|
extend ( callable $compiler ) : void |
Register a custom Blade compiler. |
|
getCompiledPath ( string $path ) : string |
Get the path to the compiled version of a view. |
|
getContentTags ( ) : string |
Gets the content tags used for the compiler. |
|
getCustomDirectives ( ) : array |
Get the list of custom directives. |
|
getEscapedContentTags ( ) : string |
Gets the escaped content tags used for the compiler. |
|
getExtensions ( ) : array |
Get the extensions used by the compiler. |
|
getPath ( ) : string |
Get the path currently being compiled. |
|
getRawTags ( ) : array |
Gets the raw tags used by the compiler. |
|
isExpired ( string $path ) : boolean |
Determine if the view at the given path is expired. |
|
setContentTags ( string $openTag, string $closeTag, boolean $escaped = false ) : void |
Sets the content tags used for the compiler. |
|
setEchoFormat ( string $format ) : void |
Set the echo format to be used by the compiler. |
|
setEscapedContentTags ( string $openTag, string $closeTag ) : void |
Sets the escaped content tags used for the compiler. |
|
setPath ( string $path ) : void |
Set the path currently being compiled. |
|
setRawTags ( string $openTag, string $closeTag ) : void |
Sets the raw tags used for the compiler. |
|