Showing 10 of 1,280 results.

Laravel: Implementing a MD5 Hasher

…5Hasher Options Description salt A salt can be supplied to the make and needsRehash methods. If no salt is supplied to the make method, one will be generated. The following is the complete implementation of the Md5Hasher class: 1 <?php 2 3...

Laravel: Implementing a CRYPT_SHA256 Hasher

…l be generated. rounds Users can give an integer for the make and needsRehash methods to change the number of iterations the hashing function will perform. The following is the complete implementation of the Sha256Hasher class: 1 <?php 2 3...

The Laravel Translator

…Symfony's Symfony\Component\Translation\TranslatorInterface interface so it should look familiar to developers coming from a Symfony background. The following explanations of the various API methods will be using the passwords group that ships...

Collapsing Laravel Collections using array_collapse

This article is a continuation of the Laravel Array Helper Function: array_collapse article. The collapse (defined in the Illuminate\Support\Arr helper class) method will also work on Illuminate collections. There is no special syntax required to...

Filter Search