Showing 10 of 2,144 results.

Laravel Companion: Second Edition

Laravel Companion: Second Edition is the practical, example-rich reference guide designed for developers who want to work smarter with Laravel. Whether you're just getting started or looking to level up, this book gives you a fast and accessible...

Configuring Browsershot

Browsershot provides many configuration values that can be adjusted, based on your system's specific setup. More information about all of these options can be found within their official documentation at...

Rendering Content for the Search Index | Index Configuration

The documentation search provider utilizes Antlers templates to provide data to the search indexer. Doing so dramatically simplifies the process of splitting entries into documents based on headings, especially for more complicated fieldtypes like...

Laravel 5 Collections: Adding Values to a Collection With union

The union method will add the $items value to a copy of the existing collection. If there are key collisions between the collection instance and the provided $items , the elements from the collection instance will be used instead. The union method...

Configuring the Queue | Using a Job Queue

You may configure the queue Social Media Image Kit should use by modifying the queue.php configuration file: 1 <?php 2 3 return [ 4 5 // ... 6 7 /* 8 |-------------------------------------------------------------------------- 9 | Queue...

Laravel Array Helper Functions

Laravel provides many helper functions for interacting and manipulating array data structures. Laravel's array functions offer additional functionality on top of PHP's built in array functions. The helper functions in this section are located...

Creating Facades | Laravel 5 Facades

It may become necessary when developing certain applications, or when creating packages to write a facade class. Creating a facade class is fairly simple. The first thing that is required is some actual concrete class the facade will be accessing....