Showing 10 of 2,133 results.

registerCustomDirective | The Document Parser

Registers a single custom directive name. Argument Description $name The directive name. 1 <?php 2 3 public function registerCustomDirective ( 4 string $ name 5 ) : void ;

Disclaimer of Warranty | Licensing

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT...

getErrors | Validating Documents

Returns the Blade errors. Returns a Collection instance containing the document's errors. This method will return errors from all sources, such as parser and validation errors. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5 public...

setDirectiveNames | Blade Documents

…ould match those that were used when initially parsing the input template. These directive names will be used when performing structural analysis. If you are using the Blade::fromText($template) static API, this is managed for you. Argument...

getFallback() | The Laravel Translator

The getFallback() method is used to return the fallback locale that the translator is currently using. A fallback locale is used when a translation for a different locale cannot be found. 1 <?php 2 3 // Get a `Translator` instance from the...

Step 2: The Paginator View | Semantic UI Paginator for Laravel 4

Now we need to make a pagination view. This is the easy part. We simply create a new view in the views folder wherever you want. I named mine paginator.php in a folder that I named semantic . The paginator view looks like this: 1 <?php 2 $...