Showing 7 of 1,975 result(s)
The Illuminate\Support\Collection class provides a wrapper around PHP's arrays. The Collection class has numerous methods for retrieving, setting and manipulating the data of the underlying array. Each Collection instance has an internal array...
…ey values on the Internet like this. These are just example values! In a previous step, we started a terminal window and shared our development site using Expose. Locate the Expose-URL (or equivalent) now so we can use it to configure our Stripe...
Before we can implement our custom layout behavior, we must determine how Statamic does this internally. Through source diving, we will find that Statamic utilizes instances of the Statamic\View\View class when rendering Antlers views. Of...
The avg method is a useful method for calculating the average of all items in the collection. The avg method defines an optional $key parameter, which can be used to specify what property of the collection should be averaged. If no key is...
avg($key = null) The avg method is a useful method for calculating the average of all items in the collection. The avg method defines an optional $key parameter, which can be used to specify what property of the collection should be averaged. If...
At this point, we are ready to begin implementing our actual component compiler. We will create a couple of new classes to help keep things organized. The first will be a data object containing the details of each compiled class and serves as a...
The class we want to extend is Illuminate\Paginator\Paginator . It has a function named getUrl($page) ; this is responsible for creating the URLs that the paginator uses when rendering the HTML links. Because of this fact, we should figure out a...