所以,标题基本上描述了我的问题。我的 Hash:make() 疯了。我创建了一个带有哈希密码的用户表,但我无法让 Laravel 接受我的凭据,我认为问题出在 Hash::make 中。
所以,测试这段代码:
Route::get('/', function()
{
return Hash::make('1234');
});
每次我点击路线“/”时,它都会给我一个不同的哈希值。
它对每个人都这样吗?有什么建议么?我迷路了!
火箭提示后,我试过了
if(!Hash::check('1234', User::find(1)->password))
return 'not';
$credentials = array(
'email' => 'email@example.com',
'password' => '1234',
//'remember' => $remember
);
if(Auth::attempt($credentials))
{
return View::make('hello');
}
return "Invalid Credentials";
但它不断返回“无效凭据”。我已经仔细检查了我的 auth.php 并且设置正确。还有什么我可以尝试的吗?