Showing 10 of 2,055 results.

setEchoFormat | Blade Compiler

Set the echo format to be used by the compiler. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::setEchoFormat method. You do not need to manually call this method to sync compiler information if you use the...

withDoubleEncoding | Blade Compiler

Set the "echo" format to double encode entities. This method has the same behavior as the Illuminate\View\Compilers\BladeCompiler::withDoubleEncoding method. You do not need to manually call this method to sync compiler information if you use the...

registerCustomComponentTagCompiler | Blade Compiler

Register a custom component tag compiler. This method will automatically register the provided tag name with the component tag compiler. Argument Description $tagName The custom component tag prefix. $compiler The compiler instance. 1 <?php 2 3...

11. Patents. | License

A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. A contributor's “essential patent claims”...

Example Use | Laravel 5.5 String Helper Method: kebab

Here are a few examples with the result above the function call in comments: 1 use Illuminate \ Support \ Str ; 2 3 // my-words 4 echo Str :: kebab ( ' MyWords ' ) ; 5 6 // m-y-w-o-r-d-s 7 echo Str :: kebab ( ' MYWORDS ' ) ; 8 9 // The kebab...

Laravel 5: Retrieving Environment Variables With env

…t for the provided $key .The signature of the env function is: 1 function env ( 2 $ key , 3 $ default = null 4 ) ;The following examples will use the following .env environment file: 1 APP_ENV=local 2 APP_DEBUG=true 3 APP_KEY=SomeRandomString 4 5...