Showing 10 of 2,044 results.

Laravel 5: String Pluralization Syntax

In the previous sections, we briefly explored the concept of pluralization in regards to translation lines. In this section, we will explore the pluralization syntax in greater detail and develop our pluralization skills a little more.

Exporting Comments

Comments can be exported from within the Statamic Control Panel by selecting the "Comments" menu item. Once the Meerkat Comments page has loaded, you will find the export options in the top-right corner of your screen:The following data formats...

Always Check for Nested Comments | Responses and Replies

When writing recursive comments, always check if there are nested comments by using a condition similar to the following example: 1 {{ comments }} 2 {{ if comments }} 3 {{ * recursive comments * }} 4 {{ /if }} 5 {{ /comments }}

Date Grouped Comments | Responses and Replies

…nder the comments in each group. --> 9 {{ /comments }} 10 11 {{ /date_groups }} 12 13 {{ /meerkat : responses }} When displaying date grouped comments, you will have access to each group (through date_groups ), as well as the following values:...

Laravel 5: Performing HTTP Redirects With redirect

The redirect helper function is a useful helper function and makes the task of returning HTTP redirects much easier from controller actions or from routes. The $to parameter is defined with a default value of null . When $to is null , the redirect...