Search

Showing 7 of 587 result(s)

/blog/2017/10/31/installing-linguistics-for-adobe-brackets#content-aquiring-the-plugin-files

There are two sets of files that are needed to enable the spell checking features within Brackets. These are the core spell checking libraries themselves and the dictionary files. The core plugin can be downloaded from...

/blog/2018/04/11/laravel-5-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...

/blog/2018/04/14/laravel-5-throwing-http-exceptions-with-abort

The abort function will throw an instance of "Symfony\Component\HttpKernel\Exception\HttpException" with the given $code , $message and any $headers supplied. These exceptions can be caught and handled through the application's kernel. If the...

/blog/2018/04/15/laravel-5-execute-a-callback-on-a-given-value-while-chaining-the-original-value-with-tap#content-using-tap-to-proxy-method-calls

If the $callback parameter is omitted when invoking the tap helper function, it will allow you to proxy method calls to the provided value. This is different from the with helper function; instead of returning the return value of the method call,...

/blog/2018/04/22/laravel-5-collections-calculating-the-average-value-of-a-collection-with-avg#content-signature

For example, the following code will a new Collection instance and calculate the average of all items in the collection: After the above code has executed $average would contain the value 12.5 , which is the average of 5 , 10 , 15 , and 20 . The...

/blog/2018/04/22/laravel-5-collections-execute-a-callback-on-the-collection-instance-while-returning-the-original-collection-instance-with-tap

The tap method will allow you supply a callback that will receive a copy of the current collection instance. The user supplied function will not modify the original collection, but will return a reference the original collection.In the following...

/blog/2018/04/22/laravel-5-collections-the-public-api

The Collection class exposes a generous public API, consisting of many public methods that allow you to manipulate and transform the collections internal elements. The Collection API exposes methods for retrieving values from a collection,...