在此页面中进行演示时:https://scotch.io/tutorials/simple-laravel-crud-with-resource-controllers#eloquent-model-for-the-nerds
我收到此错误:SQLSTATE [42S02]:找不到基表或视图:1146表'homestead.nerds'不存在(SQL:select * from nerds
)。
我创建了Model Nerd。请帮我解决这个错误。非常感谢
这是我的图片错误: Click Here
答案 0 :(得分:0)
确保您已成功运行迁移。
检查数据库中的书呆子表。
ELoquent模型Nerd假设您的数据库中有一个名为nerds的表。如果表有不同的名称,请在类中提及
protected $table = 'table_name';
编辑:
我已经完成了演示教程。它不是初学者友好。没有关于处理迁移和数据库的任何信息。
答案 1 :(得分:0)
检查您的迁移文件
Schema::table('table_name', function ($table) {
// ...
});
将其更改为
Schema::create('table_name', function ($table) {
// ...
});
我希望它能起作用