Showing 10 of 2,144 results.

Updating the Favicon Driver | Favicon Configuration

If you've developed or installed a different favicon generation driver you will need to update the driver option within the site_essentials/favicons.php configuration file. Site Essentials for Statamic ships with an ImagickDriver by default. 1...

Configuring Laravel Pint | Formatter Configuration and Usage

…ives, as well as in raw PHP blocks. You will need to have Laravel Pint available globally, or available within your project's vendor folder. 1 { 2 " useLaravelPint " : true 3 } By default the Blade formatter will look for Pint at the following...

Laravel 5: View Error Bags

The "Illuminate\Support\ViewErrorBag" class is generally used to communicate error messages with views and responses. The ViewErrorBag itself is essentially a container for Illuminate\Contracts\Support\MessageBag implementation instances. An...

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....

Compilation Targets

The compiler implementation supports the concept of "compilation targets." Compilation targets instruct the compiler to change its behavior depending on where the resulting PHP code is used. Currently, the following compilation targets are...

Laravel Artisan Tinker: The migrate Command

The migrate command is used to run migrations against the database. It provides many different options and flags (six in total). The following table lists and explains each of these options and flags. Option/Flag Description Default Value...

Laravel Collection Public API: combine

combine($values) The combine method is used to combine the keys of the collection the method was called on with the values of another collection or array (supplied as an argument for $values ). This method is equivalent to using PHP's...