Set bcrypt rounds using the hashing config

This commit is contained in:
Roberto Aguilar
2018-04-18 10:09:32 -05:00
parent 0b89e2ff20
commit dc320c8942
3 changed files with 2 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ return [
*/
'bcrypt' => [
'rounds' => 10,
'rounds' => env('BCRYPT_ROUNDS', 10),
],
/*