I have Database created by Codeigniter included "users" table, the problem is "password" in this table hash by Codeigniter and I need to authenticate login using Laravel 4,
if (Auth::attempt(array('email' => $email, 'password' => $password)))
{
return Redirect::intended('dashboard');
}
how to rewrite Auth::attempt to accept Codeigniter HASH?
thanks,