Is there a way to select fields from an eager loaded table in Laravel?

后端 未结 2 1815
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-24 12:55

So I have a couple of relational tables defined below

Parent DB:

public function backorderQuantities(){
        return $this->hasMany(BackorderQuantity:         


        
2条回答
  •  太阳男子
    2021-01-24 13:10

    You will need to use join instead of eager loading.

    Similar question already exists on the Laracasts forum: here

提交回复
热议问题