laravel fetch data from table with to foreign keys to the same table

Solution:

You need to return the relationship from the methods. For example:

return $this->belongsTo('App\Team', 'home_team_id');

You do that in your Team model, but not the game model.