Showing 10 of 2,044 results.

Using a Job Queue

Social Media Image Kit can be configured to process image rendering using a job queue. The typical setup for this scenario will involve having a database available, or some other asynchronous method of processing jobs. Before continuing, it is...

Form Attributes | Meerkat Forms

With Meerkat, it is simple to add additional form attributes to your Meerkat forms. The following example demonstrates how to add a custom HTML data attribute and a CSS class: 1 {{ meerkat : create class = " w-full " data-attribute = " my-value "...

se_str_finish Modifier

The se_str_finish modifier may be used to ensure a given string always ends with the provided cap. 1 {{# the value. #}} 2 {{ ' the value. ' | se_str_finish ( ' . ' ) / }} 3 4 {{# the value. #}} 5 {{ ' the value ' | se_str_finish ( ' . ' ) / }}

Overview

Site Essentials for Statamic provides a robust metadata management system, easing the creation and management of a wide-variety of HTML title, meta, and link tags. The metadata management system can be used for a wide variety of scenarios,...

Generating Images Using a Queue | Generating Images

You may use a queue to generate images automatically whenever a content editor makes changes to an entry within the Control Panel. For more information on how to set this up, please consider checking out the Using a Job Queue article.

Indemnity | Licensing

You agree to indemnify and hold harmless Stillat, LLC for any third-party claims, actions or suits, as well as any related expenses, liabilities, damages, settlements or fees arising from your use or misuse of the Software, or a violation of any...

Ranges | Laravel 5: String Pluralization Syntax

Laravel's translation components allow for a simple way to express ranges of numbers when defining language files; we've seen many of the ways to do this in previous sections. However, we will explore them again in this section.

Laravel 5.5 String Helper Function: camel_case

Camel casing is similar to studly case such that each word starts with a capitalized letter, with the difference being the first character is lower cased. Like the studly method, the camel method will not affect the casing of the rest of the word.

A Basic Thread | Responses and Replies

The following code snippet will display all root level comments that are available on the current page as unordered list: 1 < ul > 2 {{ meerkat : responses }} 3 {{ comments }} 4 < li > {{ author . name }} says... {{ content }} </ li > 5 {{...