我正在研究协会的管理应用程序。在系统中,我有一个风琴表和一个成员表。这两个表之间的关系在数据透视表中是“指定”的。除成员和机关的身分证外,它还具有任命日期,日期开始授权,日期结束和所任命成员所担任职位的措辞。问题是我无法显示当选成员的列表。
class Membre extends Model
{
public function organes()
{
return $this->belongsToMany(Organe::class)
->withPivot('libelle_poste', 'date_nommination', 'date_debut', 'date_fin')
->withTimestamps();
}
}
class Membre extends Model
{
public function organes()
{
return $this->belongsToMany(Organe::class)
->withPivot('libelle_poste', 'date_nommination', 'date_debut', 'date_fin')
->withTimestamps();
}
}
问题是我无法显示当选成员的名单。