如何使用多个单词创建 laravel 6 主元 table
how to create laravel 6 pivot table with multi-word
我有帐户 table 和 Site_links table。当我在帐户模型中使用此代码时:
public function site_links(){
return $this->belongsToMany($SitelinkModel, 'account_site_link', 'account_id', 'site_link_id')->withTimestamps();
}
两个ID的值取反了
我得到了答案,所以问题是
belonsToMany参数必须是这样的(Model, id_num_of_this_table, id_num_of_the_other_table);
我的帐户模型中的样本
public function site_links(){
return $this->belongsToMany($SitelinkModel, 'account_site_link', 'site_link_id', 'account_id')->withTimestamps();
}
我有帐户 table 和 Site_links table。当我在帐户模型中使用此代码时:
public function site_links(){
return $this->belongsToMany($SitelinkModel, 'account_site_link', 'account_id', 'site_link_id')->withTimestamps();
}
两个ID的值取反了
我得到了答案,所以问题是
belonsToMany参数必须是这样的(Model, id_num_of_this_table, id_num_of_the_other_table);
我的帐户模型中的样本
public function site_links(){
return $this->belongsToMany($SitelinkModel, 'account_site_link', 'site_link_id', 'account_id')->withTimestamps();
}