Showing 10 of 2,055 results.

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...

Fluent and Closures | Laravel 5 Fluent API: The Public API

If we look at the following code example, one might be tempted to say that the value of $message would be Hello, world! , but that would be incorrect: 1 $ testObject = new stdClass ; 2 $ testObject -> method = function ( ) { 3 return ' Hello,...