Showing 10 of 2,133 results.

Blade Parser | That Escalated Quickly: All the New Things

I also released an updated version of Blade Parser , my independent library for parsing and validating Blade templates. This new version brings parity with recent changes related to component tag parsing, as well as adds compiler support for the...

toString | Blade Documents

Returns a string representation of the document. This method will traverse every node in the document and call its corresponding toString() method. Any modifications made to the document's node will be represented in the results of this method...

getOpenReplyForm Helper Method | Advanced Reply Forms

The getOpenReplyForm will return the currently open form on your page: 1 MeerkatReply . submit = function ( evt ) { 2 var currentForm = MeerkatReply . getOpenReplyForm () ; 3 4 evt . preventDefault () ; 5 } ;

Laravel Artisan Generator Command: The make:event Command

…ed to generate a new event class. The command requires a name parameter to be supplied, which will be the name of the new class. The generated classes by default will extend the App\Events\Event class (the actual namespace may be different...

validate | Validating Workspaces

Validates all documents within the workspace using the internal BladeValidator instance. 1 <?php 2 3 use Stillat \ BladeParser \ Workspaces \ Workspace ; 4 5 public function validate ( ) : Workspace ;