Search

Showing 7 of 1,975 result(s)

/blog/2016/11/30/laravel-collection-public-api-splice

splice($offset, $length = null, $replacement = []) The splice method is a versatile method; it is often used to remove a portion of a collection and return the removed section. It defines three parameters: $offset , $length and $replacement . The...

/blog/2018/04/11/laravel-5-conditionally-retrieving-array-values-with-where#content-example-use

In the following example, we will examine how to compare just the values of the arrays. Assume we have an array of numbers, from 0 to 100 : $numbers = range(0, 100); An array of all numbers less than or equal to 10 can be created like so:...

/blog/2022/07/18/antlers-and-blade-formatters-behind-the-scenes#content-the-challenge

…the list of Blade directives at runtime. To see some similar complexity when it comes to formatting an Antlers document, we can look at this example template: and its formatted version: Like with the Blade example, we have a lot of mixed...

/site-essentials-for-statamic/v1/configuration-overview

…ted favicons, as well as other options to change the driver, storage locations, etc., templating.php, : Provides an opportunity to control which Antlers tags and modifiers are available to your project. If you do not plan on modifying this file...

/blog/2018/04/22/laravel-5-collections-ensuring-a-collection-always-contains-a-specified-number-of-elements-with-pad

The pad method will pad the current collection instance's elements up to the provided size with the given value (based on the integer size of the collection). This method will return a new collection instance without affecting the current...

/blog/2016/12/07/laravel-task-scheduling-managing-task-output

…ut from your tasks, if any. Output from task processes can be appended to a file or emailed to any given email address (provided that email services have been previously configured). The following table lists each of the various output management...

/blog/2023/09/04/implementing-a-custom-blade-precompiler-for-laravel-volt-and-livewire#content-parsing-custom-blade-components

With our Blade precompiler scaffolding out of the way, we can now start working on parsing our custom Blade components. We will use the Blade parsing library we included earlier since it provides some utility features that make it much easier to...