belongsTo(ZqTeam::class, 'team_a_id', 'team_id'); } public function teamb() { return $this->belongsTo(ZqTeam::class, 'team_b_id', 'team_id'); } public function getOddsStateAttribute() { return $this->order_state; } public function getTeamALogoUrlAttribute() { if (!$this->teama) { return ''; } return JingcaiLogoService::zqCountryLarge($this->teama->country); } public function getTeamBLogoUrlAttribute() { if (!$this->teamb) { return ''; } return JingcaiLogoService::zqCountryLarge($this->teamb->country); } }