Showing 10 of 1,090 results.

Getting Started | Integrating Meerkat

…e/scratches " class = " absolute text-gray-800 mt-8 top-0 left-0 w-20 hidden md:block " }} 3 < article class = " lg:py-32 max-w-2xl mx-auto " > 4 < h1 > {{ title }} </ h1 > 5 < div class = " bg-gray-800 inline-block text-sm mb-16 pr-4 pl-16...

Creating the Comment Form | Integrating Meerkat

…scratches " class = " absolute text-gray-800 mt-8 top-0 left-0 w-20 hidden md:block " }} 3 < article class = " lg:py-32 max-w-2xl mx-auto " > 4 < h1 > {{ title }} </ h1 > 5 < div 6 class = " bg-gray-800 inline-block text-sm mb-16 pr-4 pl-16...

Laravel: Available Hashing Methods

Even though Laravel only provides a Illuminate\Contracts\Hashing\Hasher implementation for the bcrypt function, there are many more hashing functions that are available to developers. The following functions are available through the use of PHP's...

Laravel 5: Triggering Events With event

The event helper function is a convenient way to dispatch a particular $event to its listeners. An optional $payload of data can also be supplied when dispatching the event. When the event is dispatched, all its listeners will be called and any...

Laravel Collection Public API: only

…e except method. The only method is used to return all the key/value pairs in the collection where the keys in the collection are in the supplied $keys array. Internally, this method makes a call to the Illuminate\Support\Arr::only($array, $keys)...

Laravel Collection Public API: sortBy

…s by some key, or by some value returned by a $callback . The $callback can either be a function that defines two parameters: $value and $key or the $callback can be the name of some key to sort the collection by. The $options parameter allows...

Laravel Collection Public API: lists

lists($value, $key = null) The lists method is an alias of the pluck method. The lists method is used to retrieve the a list of values from the collection. It defines two parameters: $value and $key . The $value indicates which property should...

Filter Search