嗨,当我尝试将表单提交到数据库时,出现以下错误
错误
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'urenregistratie.issues' doesn't exist (SQL: insert into `issues` (`iname`, `begroting`, `description`, `updated_at`, `created_at`) values (test, 100, test description, 2019-12-04 09:19:54, 2019-12-04 09:19:54))
控制器
public function store(Request $request)
{
$this->validate($request,[
'iname' => 'required',
'begroting' => 'required',
'description' => 'required',
]);
$issue = new Issue;
$issue->iname = $request->input('iname');
$issue->begroting = $request->input('begroting');
$issue->description = $request->input('description');
$issue->save();
return redirect('/issue')->with('success', 'Data Saved');
}
迁移
public function up()
{
Schema::create('issue', function (Blueprint $table) {
$table->increments('id');
$table->string('iname');
$table->time('begroting');
$table->mediumText('description');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('issue');
}
}
Urenregistratie是我的数据库名称。但我不知道它是从哪里得到问题的,因为我将其称为没有S的问题 所以它从哪里得到问题
如果我让我知道的话,如果我错过了任何明智的代码。
答案 0 :(得分:2)
您的迁移会创建问题表,但是您要保存到问题表。在模型类中检查表名。
class Issue extends Model
{
protected $table = 'issue'; // this table name
.
.
.
}