Showing 10 of 2,055 results.

Query and Search Transformers | Index Configuration

…formers, : These transformers can add additional context to the entry or section before it is added to the search index. For example, we could use a document transformer to insert additional keywords using a dictionary of similar terms but not...

Enabling Database Users in Statamic 3

…tatamic 3 project, I had the requirement to switch to the database eloquent driver to store Statamic users. The Storing Users in a Database knowledge base article was great to get the configuration changes done, and the base database tables...

Flat Threads | Responses and Replies

…two root level comments will be available when iterating the comments collection. You can disable this by supplying a value of true to the flat parameter: 1 {{ meerkat : responses flat = " true " }} 2 3 < ul > 4 {{ comments }} 5 < li > 6 < p > {{...

Laravel Artisan Queue Command: The queue:listen Command

The queue:listen command is used to listen for and process jobs as they are added to the job queue. The command defines numerous parameters and options that can be used to customize how the queue listener interacts with and behaves under different...

Title | Open Graph Metadata

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

Asset Container Does not Exist | Troubleshooting

If you've modified the asset container field name in the configuration file and are receiving errors stating the container does not exist, ensure that the asset container within the Social Media Image Kit fieldset has also been updated.

Configuring the Blade Parser | Formatter Configuration and Usage

…ay optionally configure the Blade parser by creating a file named .blade.format.json at the root of your project. The options that can be used currently are: customIfs, : A list of custom if statements. These provide hints to the parser and teach...

Laravel Helper Function: bcrypt

bcrypt($value, $options = []) The bcrypt function will return a hashed representation of the given $value . The bcrypt function also accepts an array of $options which can be used to affect how the hash is computed. Each invocation of the bcrypt...