Good day,
I am creating a program where all I need for credentials is the password.
$password = Input::get('password'); //eg: admin
and when I try to compare it with value on database which is hashed already.
$user = DB::table('users_table')->where('password',$password)->get();
//eg: hashed value for admin is '$10$zYy1fGLPh/eI/sj8YmkN8.sTTkD4k9t/gwrkgGWOIufHvRYhKwTay'.
I cant get any successful filter with it. Do I need special functions for this? thanks for the help.