I have the following table layout:
deals:
- id
- price
products:
- id
- name
deal_product:
- id
- deal_id
- product_id
metrics:
- id
- name
metric_product:
- id
- metric_id
- product_id
- value
products
and metrics
have a many-to-many relationship with a pivot column of value.
deals
and products
also have a many-to-many relationship.
I can get metrics for a product with $product->metrics
, but I want to be able to get all metrics for all products related to a deal, so I could do something like this: $deal->metrics
.
I currently have the following in my Deal
model:
public function metrics()
{
$products = $this->products()->pluck('products.id')->all();
return Metric::whereHas('products', function (Builder $query) use ($products) {
$query->whereIn('products.id', $products);
});
}
But this doesn't return a relationship, so I cannot eager load it or get related models from it.
It needs to be in relationship format, because they need to be eager loaded for my use case.
Thanks for your help!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…