belongsToMany(Dataset::class, 'link_documents_collections', 'role_id', 'document_id'); // } public function collections() { //model, foreign key on the Collection model is role_id, local id of this is id return $this->hasMany(Collection::class, 'role_id', 'id'); } }