Laravel Hash

The elegant way to hash passwords. Built with Laravel's philosophy of developer happiness in mind.

Simple. Secure. Laravel.

Generate password hashes using Laravel's robust hashing algorithms. Perfect for testing, development, and production environments.

Bcrypt by Default

Industry-standard password hashing

Multiple Algorithms

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
}