gpt4 book ai didi

Laravel 使用 Bcrypt 密码创建第一条记录

转载 作者:行者123 更新时间:2023-12-02 18:21:36 25 4
gpt4 key购买 nike

我可以通过迁移在数据库中创建第一条记录吗,在 password 中列已加密

public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email');
$table->string('level');
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});

User::firstOrCreate([
'name' => 'admin',
'email' => '<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f9989d949097b9988989d79a9694" rel="noreferrer noopener nofollow">[email protected]</a>',
'level' => 'Administrator',
'password' => 'password'
]);
}

代码可以工作,但是password没有加密,有什么建议吗?

最佳答案

以这种方式保存密码:

    'password' => Hash::make('password');

或者你可以使用这种方式:

'password' => bcrypt('password');

关于Laravel 使用 Bcrypt 密码创建第一条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70803555/

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