xxxxxxxxxx
// If you're trying to insert a user in DB through tinker or eloquent
// and you need a hashed password:
DB::table('users')->insert([
'name'=>'userName',
'email'=>'userName@example.com',
'password'=>Hash::make('password1234')
]);