Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

php - Laravel Eager Loading Polymorphic Relationships

Trying to eager load a model and it's related model but the related model returns null even though it has related data.

Group Model is polymorphic 1:1 to either Game or Gamer.

Group Model Relationship:

public function groupable()
{
    return $this->morphTo();
}

Game Model Relationship:

public function group()
{
    return $this->morphOne('Group', 'groupable');
}

Gamer Model Relationship:

public function group()
{
    return $this->morphOne('Group', 'groupable');
}

Query to Load Group then Game:

$group = Group::whereSubdomain($id)->first();
$game = $group->game;

Group returns the group but game returns null.

Here is a sample database entry for Groups table:

id    subdomain    groupable_id    groupable_type
5     Starmade     10              Game

Here is a sample database entry for Games table:

id    genre    rating
10    7        4.5

Not sure where I am going wrong to have no game returned.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try this. It might help.

    public function groupable()
{
    return $this->morphTo('groupable');
}

I had that problem too earlier, maybe you have the same prob like me. Essentially what I did was to help Laravel finds what columns it needs to look up for.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...