laravel Hash::make code example

Example 1: laravel create password hash

$password = Hash::make('yourPa$$w0rd');

Example 2: laravel hash

use Illuminate\Support\Facades\Hash;

Hash::make($newPassword);

if (Hash::check('plain-text', $hashedPassword)) {
    // The passwords match...
}

Example 3: laravel hash password check

$data = User::find($id);
if( ! Hash::check( $data->password , Input::get('currPassword') ) )
{
    return Redirect::to('/admin/profile')
        ->with('message', 'Current Password Error !')
        ->withInput();
}

Example 4: laravel hash namespace

use Illuminate\Support\Facades\Hash;

Tags:

Php Example