Showing 10 of 1,322 results.

getAllStructures | Document Structures

…2 3 use Illuminate \ Support \ Collection ; 4 5 public function getAllStructures ( ) : Collection ; Example Use 1 <?php 2 3 use Stillat \ BladeParser \ Document \ Document ; 4 5 $ template = <<< ' BLADE ' 6 @if ( $ varOne ) 7 @if ( $ varTwo ) 8 9...

HTML Fragments

The Blade Parser library supports the concept of "HTML fragments," or the parsing of invalid HTML documents. This feature exists to help provide additional context to the parsed Blade constructs, such as where they appear within a document. The...

Reply Forms

Most sites provide the ability for visitors to reply to one-anothers comments. Meerkat supports this out of the box, but might be one of the most involved aspects of integrating Meerkat in your site's theme. When Meerkat generates the opening tags...

Front-end Templates

There are two ways to add favicon metadata/link tags to your site's front-end templates: the dedicated Antlers tag and the metadata provider.The se_get_favicons Antlers tag returns information about the generated favicons to help construct the...

Multiple Pagination Instances | Responses and Replies

…the next page. --> 27 < a href = " {{ next_page }} " > Next </ a > 28 29 {{ /paginate }} 30 31 {{ /meerkat : responses }} The default value of the pageby parameter is page ; the value supplied is what will be used when constructed URLs and when...

Paginated Groups | Responses and Replies

Meerkat 2 introduces the ability to create paginated groups of comments; this feature combines the pagination and grouping features to allow for incredibly customized and complex comment layouts. This feature is intended for advanced use cases; if...