Example Use | Laravel 5: Hashing Strings With bcrypt
The following example demonstrates how to call the bcrypt function: 1 for ( $ i = 0 ; $ i < 10 ; $ i ++ ) 2 { 3 // echo the hash and an HTML line break 4 echo bcrypt ( ' test ' ) , ' <br> ' ; 5 } The above example would output something similar to...