Showing 10 of 2,044 results.

Custom Images

…a per-entry basis. This features allows for a custom set of images to be used in place of the automatically generated ones.To utilize this feature, navigate to the entry within the Control Panel and locate the fields that were imported into your...

Signature | Laravel 5: String Translation Public API

The signature of the addNamespace method is: 1 public function addNamespace ( 2 $ namespace , 3 $ hint 4 ) ; The parameters of this method match the parameters of the loader's addNamespace method.

Laravel 5: Generating URLs With url

…return an instance of the configured Illuminate\Contracts\Routing\UrlGenerator implementation (by default this is an instance of Illuminate\Routing\UrlGenerator ). The url function can be used to generate arbitrary URLs. Calling the url function...

Creating a Form | Meerkat Forms

Meerkat forms provide access to a rich set of useful features such as validation messages, form success, failures, etc. To do get access to these features we can either use the {{ meerkat:form }} or {{ meerkat:create }} tag (they are completely...

Laravel Array Helper Function: array_add

The add helper method adds the given $key and $value to an $array if the $key doesn't already exist within the given $array . The signature for the add helper method is: add($array, $key, $value) Consider the following code snippet: 1 use...

Disabling Core Directives | The Document Parser

Depending on the integration or use case, it may be beneficial to remove support for the core directives and specify only a subset of directives names. We can accomplish this by calling the withoutCoreDirectives method: 1 <?php 2 3 use Stillat \...