使用单个窗体将数据插入到两个表中.拉拉维尔:错误完整性约束冲突



所以我想知道如何将数据插入两个不同的表格中,但链接,表格邮政(报价,广告(和公司,每个广告都链接到一家公司,我创建了两个模型,只有1个控制器,邮政和公司以及邮政控制器。

Schema::create('entreprises', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('nomEntreprise');
$table->string('adresseEntreprise');
$table->timestamps();
});
Schema::create('postes', function (Blueprint $table) {
$table->increments('idPoste');
$table->unsignedBigInteger('idEntreprise');
$table->string('nomPoste');
$table->text('descriptionPoste');
$table->timestamps();
$table->foreign('idEntreprise')
->references('id')
->on('entreprises')
->onDelete('cascade');
});
public function create()
{
$postes = Poste::all();
$entreprises = Entreprise::all();
return view('postes.create', compact('postes','entreprises'));
}
public function store(Request $request)
{
$data = $request->validate([
'nomPoste'=>'required|min:3',
'descriptionPoste'=>'required|min:3'
]);
$data2 = $request->validate([
'nomEntreprise'=>'required|min:3',
'adresseEntreprise'=>'required|min:3'
]);
Poste::create($data);
Entreprise::create($data2);

return back();
}
class Poste extends Model
{

protected $fillable = ['nomPoste','descriptionPoste','idEntreprise'];
public function entreprise()
{
return $this->belongsTo(Entreprise::class,'idEntreprise');
}
}
protected $fillable = ['nomEntreprise', 'adresseEntreprise'];
public function poste()
{
return $this->hasMany(Poste::class);
}

当我通过工厂插入数据时,它运行良好,因为我设法通过 id 显示他的公司的帖子。 但是从插入中给我带来了错误,例如:完整性约束冲突:1452 无法添加或更新子行:外键约束失败(projetetudiant.postes, CONSTRAINT postes_identreprise_foreign 外键 (idEntreprise( 引用 删除级联上的企业 (ID(。

我是新来的,只是为了吸引拉拉维尔,我已经卡住了,所以请真的需要帮助! 对不起我的英语,我是一个法国人。

如果您没有企业记录,则无法插入过帐记录。
在您的情况下,您在企业之前插入帖子,这就是错误。

您的商店功能将变为:

public function store(Request $request)
{
$data = $request->validate([
'nomPoste'=>'required|min:3',
'descriptionPoste'=>'required|min:3'
]);
$data2 = $request->validate([
'nomEntreprise'=>'required|min:3',
'adresseEntreprise'=>'required|min:3'
]);
$newEnterprise = Entreprise::create($data2);
Poste::create($data + [
'idEntreprise' => $newEnterprise->id
]);
return back();
}

最新更新