Showing 10 of 2,055 results.

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....

Integrating Third-Party Addons | Overview

…tents that appear within the tag pair, and remove any meta/link tags it generated that will conflict within. The meta/link tags that appear last within the tag's contents will take priority. If you are using SEO Pro, you can use the seoPro helper...

findComponentByTagName | Querying Document Nodes

…with the provided name. Argument Description $tagName The tag name to filter on. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ Components \ ComponentNode ; 4 5 public function findComponentByTagName ( 6 string $ tagName 7 ) : ComponentNode ;...

findAllNodesStartingOnLine | Querying Document Nodes

Retrieves all nodes starting on the target line. Only the node's starting position is considered. Argument Description $line The target line. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 4 5 public function...

getAllParentNodesForNode | Querying Document Nodes

Retrieves all parent nodes for the provided node. Argument Description $node The node. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ AbstractNode ; 4 use Stillat \ BladeParser \ Nodes \ NodeCollection ; 5 6 public function...

Laravel String Helper Function: words

The words helper method is similar to the limit function, but instead of limiting the number of characters returned, it limits the number of words returned. The signature for the words helper function is: words($value, $words = 100, $end = '...')...

Laravel Array Helper Function: array_divide

The divide helper method will take the given $array and create two new arrays. The first array will be all of the keys from the original $array and the second array will be all of the values. 1 <?php 2 3 use Illuminate \ Support \ Arr ; 4 5 $...