Showing 10 of 2,145 results.

Simple Filter Parameters | Basic Filtering

Beyond the default filters, Meerkat also offers a handful of simple filter parameters that can be used (Meerkat filters can get much more powerful, but we will get into that later). These filter parameters are: Filter Description Type Default...

Integrating Third-Party Addons | Overview

If you are using a third-party addon and would like that addon's generated metadata to take priority over the meta/link tags generated by the se_meta tag, you can use the se_meta tag as a tag pair. You can output the additional meta/link tags...

Duplicate Condition Expressions | The Validate Command

Class : DuplicateConditionExpressionsValidator The duplicate condition expressions validator may be used to detect trivial identical expressions. The following template: 1 @if ( $ this == ' that ' ) 2 3 @elseif ( $ this == ' that ' ) 4 5 @else 6 7...

Control Panel Overview

The Statamic Control Panel is the recommended method for interacting with Meerkat comment data (but you are welcome to dig around the file system, if you wish).Meerkat can be accessed by selecting the "Comments" menu item from the navigation menu...

Example Use | Laravel 5: Filtering Array Elements With only

The only helper method is the logical opposite of the except method. Using the same $_POST array from the previous example, we could retrieve only a user's first name like so: 1 use Illuminate \ Support \ Arr ; 2 3 $ inputData = Arr :: only ( 4 $...

Description | Open Graph Metadata

The description method queues a <meta property="og:description" content="..."> tag. By default it binds to the $meta_description variable. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 // Adjusting the...

Laravel Miscellaneous Helper Function: dd

dd() The dd function is a debug utility that will dump a set of values and then die. This means it will create a human-readable representation of the values and then stop execution of the script. The dd function will take into account if the...