Не нужна модель Affiliated_has_Entities
.Вы можете написать отношения, как показано ниже, не забудьте проверить аргументы и их порядок в отношении belognsToMany
(извините за слова с ошибками)
Модель сущностей
public function afilliateds(){
return $this->belongsToMany('Afilliated', 'Afilliated_has_Entities');
}
Афилированная модель
public function entities(){
return $this->belongsToMany('Entities', 'Afilliated_has_Entities');
}
public function benefits(){
return $this->belongsToMany('Entities', 'Afilliated_has_Entities');
}
Преимущества модели
public function entites(){
return $this->belongsToMany('Entities', 'Afilliated_has_Entities');
}
И так далее ..
Надеюсь, это поможет