belongsToMany('App\Models\Oeuvre', 'assolisteaoeuvre'); } public function jeux() { return $this->belongsToMany('App\Models\Jeu', 'assolisteajeu'); } public function scopeCurrentUser($query) { $idUser = Auth::user()->id; return $query->where('iduser', $idUser); } }