Showing 10 of 2,055 results.

Basic Structure of Modifiers | Creating a Statamic Compact Modifier

…llowing example would return the upper-cased version of the value Hello, world! : 1 {{# Outputs "HELLO, WORLD!" #}} 2 {{ " Hello, world! " | upper }} The input value for modifiers always come from the left. Modifiers can also accept parameters,...

How Meerkat Decides What Form to Display | Reply Forms

…display whatever form has been generated by the {{ meerkat:create }} tag (pro tip: the default attribute value will be data-meerkat-form="comment-form" ). This form has the data attribute data-meerkat-form="comment-form" attached to it, and this...

Soft Deleted Comments

…eleted comments, we can supply a value of true for the with_trashed parameter: 1 {{ meerkat : responses with_trashed = " true " }} 2 {{ comments }} 3 < div class = " media " > 4 < div class = " media-body " > 5 < h4 class = " media-heading " > {{...

Laravel Artisan Generator Command: The make:listener Command

…he name of the newly generated class. The command also defines one required option: event . The event option is used to specify which event class the listener is being generated for. A queued flag can also be specified to indicate that the...

The Controller Function | Laravel Paginator Pretty URLs

Now if we move over to our controller, we actually need to implement the getShowResults() function. 1 <?php 2 3 ... 4 5 class UsersController extends BaseController { 6 7 public function getShowResults ( $ page ) 8 { 9 // Code here to get a list...

Considerations of Using the array_sort Laravel Helper Function

…rt function (discussed in the Laravel Array Helper Function: array_sort article) internally creates a new instance of the \Illuminate\Support\Collection class with the given $array and then calls the collection's sortBy(callable $callback = null)...

Laravel Facades Part Four: Facade Class Reference

…ss Reference The following tables will list all the facades that are available by default. In addition, they will display the name of the service container binding as well as the class behind the facade. If a particular facade provides additional...