我创建了一个新的Lumen 5.4项目并尝试播种一些数据.在播种机中,我使用bcrypt来散列密码.但是当我运行PHP artisan db:seed时,我收到此错误:
Call to undefined function bcrypt()
为什么我不能在流明中使用bcrypt?我之前在Laravel中使用过它.
你可以尝试:
app('hash')->make('yourpassword');