Showing 10 of 2,044 results.

Configuration Updates | Managing Projects and Versions

After a version has been created there are a few additional (and optional) configuration updates you might wish to make. config/social_media_image_kit/genera.php, : You may wish to add your new collection to the, collections, configuration item....

se_random_id Tag

The se_random_id tag may be used to generate a random element ID. By default generates an ID that is 16 characters long. Generated IDs always begin with the el prefix (which is factored into the final length). The minimum length this tag can...

Specifying a Default Value | Laravel 4: Getting User Input

When we use the get() method, we pass the name of the field we want the value of as the first argument. We can optionally use a second argument to specify a default value if one has not been set: 1 <?php 2 3 Route :: post ( ' user/create ' ,...

Supplying Array Data | Laravel Artisan: Interacting With Commands

Some commands accept multiple pieces of information to be stored in the same input argument; array parameters are defined as the last parameter in a commands signature so that there is no ambiguity between array data and other input parameters....

Permalinks

Tidal will automatically insert permalink links for headings within your content. This is done for pages authored using the "Documentation (Markdown)" and "Documentation (Page Builder)" blueprints. The links created for headings within your...

Laravel String Helper Function: starts_with

…osite of ends_with , and has the same rules of use. Instead of checking if a given $haystack ends with any of the supplied $needles , startsWith checks if a given $haystack starts with any of the $needles . The signature for the startsWith helper...