Showing 10 of 2,044 results.

Defining Custom Filters | Advanced Filtering

Custom filters can also be defined in the meerkat/filters.php file using the filter helper method. The following filter will only return comments that contain the phrase hello in their content: 1 <?php 2 3 use Illuminate \ Support \ Str ; 4 use...

Display Comment Counts

…nts that are counted by the count tag can be customized by supplying a value to the filter parameter: 1 < p > There are {{ meerkat : count filter = " is:spam(true) " }} spam comments. </ p > Alternatively, we could limit the displayed count to...

Additional Input Methods | Laravel 5 Facades

The Input facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components.

Additional Schema Methods | Laravel 5 Facades

The Schema facade defines one extra method. Facades define extra methods to provide simpler access to underlying sub-systems, or to call functions on other, related components, or to provide greater testability of the framework components.

Additional Storage Methods | Laravel 5 Facades

The Storage facade defines a few extra helper methods, both are to help make testing filesystem components within your Laravel application easier. Both of these testing methods will replace the storage disk with a local storage disk; this means...