gpt4 book ai didi

php - 在 Laravel 7 中使用纯文本密码

转载 作者:行者123 更新时间:2023-12-05 06:17:20 25 4
gpt4 key购买 nike

美好的一天,

我是新手,仍在学习 Laravel 7 框架。有没有一种方法可以在我的登录页面上使用纯文本密码,因为在我现有的数据库用户密码上只使用纯文本?

最佳答案

您可以手动检索用户,然后将其传递给 Auth::login( $user )。示例:

$user = User::where( 'email'    => $request->input( 'email' ) )
->where( 'password' => $request->input( 'password' ) )
->first();

if( $user ) {
Auth::login( $user );
}

关于php - 在 Laravel 7 中使用纯文本密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61721985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com