1

阅读https://laravel.com/docs/8.x/fortify(laravel 8)我没有找到注册时使用哪种方法创建密码?当我使用 bcrypt 方法在迁移中创建用户时,它不适用于

Hash::check

方法?

换句话说,我应该使用哪种方法迁移添加用户?

谢谢!

4

1 回答 1

4

It is using Hash::make($input['password']). You can find it in app\Actions\Fortify\CreateNewUser.php.

于 2020-12-20T13:31:15.430 回答