我需要创建一个将数据写入关系表的方法。我通过get发送数据,我需要将它们存储在我的表中。下面是我写给你的那段代码。
public function store(Request $request){
$campanha = Campanha::find($request->campanha);
foreach ($request->chksintese as $key => $value) {
$campanha->sinteses()->attach($value);
}
return redirect('sintese-campanha');
}
我的要求是这样的:
array:2 [▼
"campanha" => "26"
"chksintese" => array:5 [▼
0 => "92"
1 => "86"
2 => "1"
3 => "9"
4 => "13"
]
]
在我的模特中,我有关系方法:
public function sinteses(){
return $this->belongsToMany(Sintese::class);
}
和
public function campanhas(){
return $this->belongsToMany(Campanha::class);
}
我知道这是非常基本的,但我现在开始使用laravel。我希望有人能帮帮忙。
我得到一个错误:
QueryException in Connection.php line 769:
SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "campanha_sintese" does not exist
LINE 1: insert into "campanha_sintese" ("campanha_id", "sintese_id")...
^ (SQL: insert into "campanha_sintese" ("campanha_id", "sintese_id") values (31, 13))
我的关系表的迁移代码
public function up()
{
Schema::create('callcenter.campanha_sintese', function(Blueprint $table) {
$table->integer('sintese_id')->unsigned;
$table->foreign('sintese_id')->references('cod_sintese_conversa')->on('crm.sintese_conversa');
$table->integer('campanha_id')->unsigned;
$table->foreign('campanha_id')->references('id_campanha')->on('callcenter.campanha_new');
$table->timestamps();
});
}