Showing 10 of 2,044 results.

Tidal Starter Kits | That Escalated Quickly: All the New Things

The "example site" that started it all. Tidal is a starter kit for Statamic, with a focus on making it simpler to manage documentation-heavy websites. Tidal allows you to manage multiple projects, versions, as well as supports Statamic's...

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

Introduction & Installation

Search Report for Statamic is a simple Control Panel and utility addon that allows you to log searches made on your site, and view them within Statamic's Control Panel.Search Report for Statamic can be installed by running the following command...

getNodes | Querying Document Nodes

Gets the document nodes. Returns a NodeCollection instance containing the nodes that represent the parsed template. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function getNodes ( ) : NodeCollection ;

getVerbatimBlocks | Querying Document Nodes

…erbatimNode instance will either become part of the document's literal content (in the case of the @verbatim directive), or will become a standalone DirectiveNode (in the case of @endverbatim ). 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \...

findDirectiveByName | Querying Document Nodes

…rovided name. Returns null if no directive was found. Argument Description $name The directive name. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ DirectiveNode ; 4 5 public function findDirectiveByName ( 6 string $ name 7 ) : DirectiveNode ;...

allOfType | Querying Document Nodes

Finds all nodes of the provided type. Argument Description $type The type to search. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function allOfType ( 6 string $ type 7 ) : NodeCollection ; Example Use 1 <?php 2 3...

Retrieving a Session Value | Laravel Helper Function: session

Values can be retrieved with the session function by supplying a $key . To retrieve the test value from the earlier example the function call would look like so: 1 <?php 2 3 // Retrieving the 'test' value. 4 $ value = session ( ' test ' ) ; It is...

Generating Images

The primary method of generating images is using the generate-images Artisan command: 1 php artisan social-media-image-kit:generate-images This command will generate images for each collection that has been configured. During the process, you...