Есть ли способ объединить 2 отношения в laravel?
это способ, которым он сейчас настроен, но есть ли способ, с помощью которого я мог бы возвратить оба слияния?
public function CompetitionsHome() {
return $this->HasMany( 'Competition', 'home_team_id' );
}
public function CompetitionsGuest() {
return $this->HasMany( 'Competition', 'guest_team_id' );
}
public function Competitions() {
// return both CompetitionsHome & CompetitionsGuest
}