Search

Showing 7 of 1,975 result(s)

/blog/2018/04/22/laravel-5-collections-calculating-the-minimum-value-of-a-collection-with-min

The min method is the logical opposite of the max method, and accepts the same number of arguments. The min method can be used to retrieve the maximum value of the given $key . By default, the $key is null and will function in a similar way to...

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

In this post, I thought it'd be fun to look at implementing a custom component compiler for Laravel's Blade templating language. Grab the example code on GitHub The work in this post was inspired by the following Twitter post: Just imagine…...

/documentation-search/v1/search-results-tag#content-rendering-grouped-search-results

For example, we could implement a simple Antlers template to show the primary search result as well as a "Other results from this page" list below each search result: 1 {{ documentation : results index = "docs" paginate = "5" as = "results"...

/meerkat/configuration-overview

…is not currently supported, but is on the roadmap for a future feature update.Meerkat ships with an Akismet integration by default. You may sign up for an Akismet account by visiting their site . Once you have obtained your API key and have set...

/blade-parser/v1/compiling-documents#content-modifying-compiler-behavior

However, there are times when it may be beneficial to change the behavior of the compiler. To do this, we can supply an instance of the Stillat\BladeParser\Document\DocumentCompilerOptions class, which will then be used internally to modify the...

/blog/2014/07/28/part-two-creating-a-custom-pagination-view-in-laravel

This is part two of two in a series of posts on how to create a custom pagination view in Laravel. Before reading this part, it is highly recommended that your first read Part One: Creating a Custom Pagination View in Laravel of this series. In...

/blog/2018/04/22/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...