Showing 10 of 2,133 results.

Available Variables | Responses and Replies

The following table highlights the data that is available to you by default when developing a Meerkat thread. It should be noted, however, that because of the extensible nature of Meerkat and the customizations that blueprints provide, this is not...

getRootConditions | Workspaces

Returns all the root workspace conditions. This method automatically performs structural analysis. Only structures that appear at the root of the document, without any parent node, will be returned. 1 <?php 2 3 use Illuminate \ Support \...

The Hash Facade | Laravel's Bcrypt Hasher

Laravel provides many facades to make it easier to quickly build application and test ideas. One such facade is the Illuminate\Support\Facades\Hash facade, which provides access to whatever implementation is bound to the...

The not:where:in Filter | The "where" Filters

The not:where:in filter is the logical opposite of the where:in filter. It accepts an arbitrary comment property to check, and a list of values to check against. The filter will return only those comments whose property value does not exist in the...

TechResources | The Statamic Add-on Roundup

The TechResources add-on is related to the BuildResources add-on. Many of the views (or pages) that can be seen on the Technology Resources section of the site are implemented as Laravel Blade templates. The reason this was done was to leverage...

Laravel String Helper Function: random

The random helper method generates a random string of the specified $length . This method internally uses the OpenSSL function openssl_random_pseudo_bytes , and therefore requires the OpenSSL extension to be installed and configured . The...

Template and Partial Names and Descriptions | Template IDE Hints

To provide a name, or description, for your partial, you must include an Antlers comment as the first item in your Antlers template. Within this comment you can prefix a line with @name to specify the partial name, and another line with @desc to...

getComponents | Querying Document Nodes

Returns all component tags within the document. This method will return all component tags within the document, including closing tags and self-closing tags. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function...