Licensing
Meerkat is not free software, and is licensed on a per-site basis. Each site must also have an appropriate Statamic License .
Showing 10 of 2,133 results.
Meerkat is not free software, and is licensed on a per-site basis. Each site must also have an appropriate Statamic License .
The document class provides a wide variety of methods that we can use to help make decisions about a Blade template.
Resolves the Document's HTML fragments. 1 <?php 2 3 use Stillat \ BladeParser \ Document \ Document ; 4 5 public function resolveFragments ( ) : Document ;
To make things as simple as possible, Meerkat provides you with some properties that you can use in your own form implementation:
Meerkat 2 has tossed away the sorting system from previous versions of Meerkat and replaced it with a new, more powerful system. The syntax for sorting comments is different from previous versions, but the capabilities it unlocks are worth it. By...
The signature of the put method is: 1 public function put ( 2 $ key , 3 Illuminate \ Contracts \ Support \ MessageBag $ bag 4 ) ;
Compiles all discovered Blade templates within the workspace. Argument Description $outputDirectory Where to store compiled files. 1 <?php 2 3 public function compile ( 4 string $ outputDirectory 5 ) : void ;
Retrieves the original Blade template line number for the given compiled PHP line. Argument Description $docPath The compiled path. $phpLine The target PHP line. 1 <?php 2 3 public function getSourceLine ( string $ docPath , 4 int $ phpLine ) : int ;
The get helper method will retrieve an item from the given $array using dot notation. This allows developers to retrieve items from the array at arbitrary depths quickly, without having to use PHP's array syntax.
Tests if the workspace contains any Blade directives. 1 <?php 2 3 public function hasAnyDirectives ( ) : bool ;