Showing 10 of 2,044 results.

Self Link | General Metadata

The self method queues a <link rel="self" href="..."> tag. By default it binds to the $current_full_url variable. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata...

Version Updates | Licensing

Each paid Meerkat license entitles the owner to all updates for the major version it was purchase for. For example, if a license was purchased at version 3.0.2 , you would be able to upgrade for free even at version 3.9.0 . Some features may be...

Laravel Helper Function: decrypt

decrypt($value) The decrypt helper function can be used to decrypt a given $value . The function resolves the configured Illuminate\Contracts\Encryption\Encrypter implementation from the Service Container and then calls the decrypt method on the...

Installation | Introduction & Installation

Social Media Image Kit can be installed into an existing Statamic project by running the following command from the root of your project: 1 composer require stillat/social-media-image-kit Social Media Image Kit requires some configuration and...

Laravel Artisan Database Command: The db:seed Command

…to a database automatically using a Seeder ( Illuminate\Database\Seeder ) class to generate or provide the records. The db:seed defines three options: class , database and force . The class option can be used to specify that a specific Seeder...

Laravel Router Helper Function: resource

resource($name, $controller, array $options = []) The resource function is a shortcut that is used to register a resource controller with the router. It accepts the $name of the route to create, the name of the $controller and an array of $options...

Defining Custom Filters | Basic Filtering

Meerkat's data query system supports custom filters, as well. Please consult the Advanced Filtering article to learn how to create custom filters, filter groups, and more.

Laravel Artisan Tinker: The history Command

…information about the commands have been previously entered in the Tinker REPL session. By using its various options, you can quickly search and find any history item, replay it and even save it to a file. The following example session...