The elegant way to hash passwords. Built with Laravel's philosophy of developer happiness in mind.
Generate password hashes using Laravel's robust hashing algorithms. Perfect for testing, development, and production environments.
Industry-standard password hashing
Argon2, bcrypt, and more
use Illuminate\Support\Facades\Hash;
// Hash a password
$hashed = Hash::make('password');
// Verify a password
if (Hash::check('password', $hashed)) {
// Password matches
}