$ php artisan infyom:scaffold User --fromTable --tableName=users
执行上述命令时出现此错误
“ infyom”命名空间中没有定义命令。
答案 0 :(得分:0)
运行`php artisan config:cache' 更新'composer.json'
检查需要添加的班级!
需要很多自定义,例如:
将User.php与Models \ User.php合并(并更改所有引用) 创建一种方法来添加随机密码(如果为空)并哈希提供的密码(编辑存储库) 从列表中删除密码 有更好的方法还是不打算对用户进行管理?
答案 1 :(得分:0)
我通过将require的最后一行添加到composer.json中来修复它
“要求”:{
“ infyomlabs / laravel-generator”:“ 6.0.x-dev”,
“ laravelcollective / html”:“ ^ 6.0”,
“ infyomlabs / adminlte-templates”:“ 6.0.x-dev”,
“学说/dbal”:“~2.3”
}
然后运行composer update并按照文档中的后续步骤操作