如何检索数据透视表上的所有数据并使用刀片显示它们

时间:2019-02-14 14:12:07

标签: many-to-many pivot-table laravel-5.7

我正在研究协会的管理应用程序。在系统中,我有一个风琴表和一个成员表。这两个表之间的关系在数据透视表中是“指定”的。除成员和机关的身分证外,它还具有任命日期,日期开始授权,日期结束和所任命成员所担任职位的措辞。问题是我无法显示当选成员的列表。

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();
    }
}

问题是我无法显示当选成员的名单。

0 个答案:

没有答案