Showing 10 of 1,322 results.

Front-end Templates

There are two ways to add the web manifest HTML tag(s) to your site's front-end templates: the dedicated Antlers tag and the metadata provider.The se_web_manifest Antlers tag may be used to output the HTML tag for your site's generated manifest...

Laravel String Helper Function: finish

The finish helper method will make sure that a given $value always ends with exactly one occurrence of the $cap . This helper method is incredibly useful when construction URIs or file paths. The $cap can be any string of characters, and does not...

Encrypting and Decrypting Within Laravel Applications

Laravel provides support for AES encryption, a symmetric key encryption scheme, right out of the box. Laravel also automatically signs all encrypted values with a message authentication code (MAC) so that any modifications to the encrypted data...

Blade Documents

The Documents API is the simplest way to begin parsing and analyzing individual Blade templates and provides a cohesive API that combines many of the library's unique features. Documents are constructed from the nodes created by the document...

removeNode | Blade Documents

…oves the provided node instance from the document. Calling this method will reindex the nodes, but will not trigger structural analysis. If structural analysis has already been performed on the document, calling this method may remove the start...

Laravel Application Helper Function: method_field

…<?php 2 3 method_field ( ' PUT ' ) ; 4 method_field ( ' POST ' ) ; 5 method_field ( ' GET ' ) ; 6 method_field ( ' PATCH ' ) ; 7 method_field ( ' DELETE ' ) ; The return value of the method_field function is an instance of HtmlString . The...

Laravel Collection Public API: merge

…items . If the $items keys are numeric, the new $items will be added to the end of the new collection's items. The merge method can accept either an array or a Collection instance. The merge method returns a new instance of Collection and does...