I'm importing users from a .csv file and I try to generate a password for each of them using:
Hash::make(Str::random(10))
// OR
bcrypt(Str::random(10))
The problem is that it takes about 8 sec for 150 users so more than 6 min for all users, there is a faster way to generate a password?