Search

Showing 7 of 587 result(s)

/blog/2016/11/21/laravel-miscellaneous-helper-function-tap

tap($value, $callback) The tap helper function is used to call a given Closure (provided as an argument to the $callback parameter) with the given $value . The tap helper function will return the reference to the original $value as its return...

/blog/2017/09/24/image-resources-for-applications-and-blogs

A common problem faced by blog authors, site hobbyist, start-ups, etc. is sourcing high-quality images without breaking the bank. Believe it or not, there are many resources available online that make amazing images available at no cost for both...

/blog/2018/04/15/laravel-5-execute-a-callback-on-a-given-value-while-chaining-the-original-value-with-tap#content-example-use

The tap helper function is used to call a given Closure (provided as an argument to the $callback parameter) with the given $value . The tap helper function will return the reference to the original $value as its return value. This allows you to...

/blog/2016/12/07/laravel-task-scheduling-running-the-task-scheduler

In this article we will explore the various ways to run the Laravel task scheduler. We will look at running the task scheduler on Mac OS as well as on Windows. There are two major ways to run the task scheduler. The first is to manually run the...

/documentation-search/v1/search-results-tag#content-rendering-code-samples-in-search-results

The documentation search indexer will collect code samples and store them within the index entry. The documentation:results makes these available as a code_samples array for each item. Each discovered code sample will contain the following...

/blog/2015/07/05/microsoft-net-framework-download-locations

The following table is simply a list of the download locations for various versions of the Microsoft .NET Framework. Version Download Location 1.1 https://www.microsoft.com/en-us/download/details.aspx?id=26 2.0 (Service Pack 2)...

/blog/2021/11/07/creating-a-statamic-compact-modifier#content-interacting-with-the-context

In the previous section we generated the scaffolding for our modifier, and started the basic implementation. We left off being able to split our modifier's input into an array of variable names, but did not actually retrieve the value of those...