Showing 10 of 2,044 results.

Example Use | Laravel 5: Hashing Strings With bcrypt

The following example demonstrates how to call the bcrypt function: 1 for ( $ i = 0 ; $ i < 10 ; $ i ++ ) 2 { 3 // echo the hash and an HTML line break 4 echo bcrypt ( ' test ' ) , ' <br> ' ; 5 } The above example would output something similar to...

Where to Make AJAX Calls | Advanced Reply Forms

Where to Make AJAX Calls When integrating AJAX in your Meerkat comment's section, you typically will make AJAX calls from the MeerkatReply.submit method. The following examples will use jQuery, but you can use whatever methods you like. The...

How the Parser Interacts with Other Features | Core Concepts

The Document Parser provides a list of parsed nodes, or AST, to almost every other feature within the library. The following diagram gives a surface-level overview of how the library is structured: The document parser receives a Blade template as...

Ambiguous Character Sequences | Core Concepts

The first difference is in how the parser parses structures, such as a simple echo containing ambiguous characters: 1 {{ ' hello {{ world }} ' }} The previous example results in the following compiled output: 1 <?php 2 3 // Laravel Compiler Output...