Showing 10 of 2,044 results.

Requiring Kint | Laravel and Kint Debugging

Since we are trying to get everything to work nicely with Kint, we should probably have Kint required in our project. Add this to your composer.json file (either in your require or require-dev section. I put mine in the require-dev section): 1 ......

The is:before Filter | The "is" Filters

The is:before filter allows you to filter comments to those that appear before a certain date. It accepts either a UNIX timestamp, or the date as text input. The following example would return all comments that were submitted to the server before...

The is:after Filter | The "is" Filters

The is:after filter allows you to filter comments to those that appear after a certain date. It accepts either a UNIX timestamp, or the date as text input. The following example would return all comments that were submitted to the server after...

The is:spam Filter | The "is" Filters

The is:spam filter allows you to filter comments based on whether or not it is considered spam. It accepts a boolean value, or the wildcard ( * ) value. The following example filters all comments that were flagged as spam: 1 {{ meerkat : responses...

The is:published Filter | The "is" Filters

The is:published filter allows you to filter comments based on whether or not it was approved by a Statamic Control Panel user. It accepts a boolean value, or the wildcard ( * ) value. The following example filters all comments that were not...

Pagination Links | Overview

If you are rendering a paginated list and would like to easily add pagination link tags, you can use the se_meta:paginate tag: 1 {{ collection : blog paginate = " 5 " as = " items " }} 2 3 {{# Add the current pagination links to metadata manager....