Showing 10 of 1,322 results.

Artisan Commands

…d Description search-report:clear-search-term-logs Clears the search term logs database table. tidal:create-version Adds a new version to the site. site-essentials:generate-favicons Regenerates all favicons and the site's web manifest file....

Laravel Collection Public API: map

map(callable $callback) The map method applies a given $callback to each item in the collection. The $callback can modify the item which will be added to a new collection. The map method does not modify the original collection, but returns a new...

Laravel 5: Generating HTTPS URLs With secure_url

The secure_url helper function can be used to generate secure, fully qualified URLs to a given $path . You can also supply additional data that will be added as a query string by supplying an argument for the $parameters parameter. The secure_url...

What Gets Logged

Search Report for Statamic does not log anything beyond the following: id, : A unique identifier for the search log itself. This does not have any correlation to the user, nor does it provide a way to uniquely identify an individual user,...

Overview

Site Essentials for Statamic provides a robust metadata management system, easing the creation and management of a wide-variety of HTML title, meta, and link tags. The metadata management system can be used for a wide variety of scenarios,...

Laravel Application Helper: abort_unless

abort_unless($boolean, $code, $message = '', array $headers) The abort_unless helper is the logical opposite of the abort_if helper function. Like abort (discussed in the Laravel Application Function: abort article) and abort_if (discussed in the...

Introduction & Installation

…s required for the Control Panel report, you will need to publish the front-end assets if they were not automatically published for you. This can be done by running the following command: 1 php artisan vendor:publish --tag =...

Available Methods | Querying Document Nodes

The following methods are also available on all NodeCollection instances, in addition to the following node types: Stillat\BladeParser\Nodes\Components\ComponentNode, Stillat\BladeParser\Nodes\DirectiveNode

Laravel Application Helper Function: factory

…rn an instance of the 'User' model. 4 $ user = factory ( ' App\User ' ) -> make ( ) ; 5 6 // Return two instances of the 'User' model. 7 $ users = factory ( ' App\User ' , 2 ) -> make ( ) ; 8 9 // Return one instance of the 'User' model, with...

Laravel Collection Public API: lists

lists($value, $key = null) The lists method is an alias of the pluck method. The lists method is used to retrieve the a list of values from the collection. It defines two parameters: $value and $key . The $value indicates which property should...