我有三种模式:
一种产品可以有很多价格(价格根据日期而变化),价格可以是多种货币。
以下是示例模式:
|-------------------------------|
| id | name |
|-------------------------------|
| 1 | Hat |
| 2 | T-shirt |
|-------------------------------|
在这里,您可以看到单个产品(帽子)可以有多种价格,不同货币,每种价格在给定日期有效。
在撰写本文时(2015年2月26日),产品1(帽子)的当前价格应为12英镑或11美元。
|-------------------------------------------------------|
| id | product_id | currency_id | price | valid_from |
|-------------------------------------------------------|
| 1 | 1 | 1 | 10 | 2014-01-01 |
| 2 | 1 | 1 | 12 | 2015-01-01 |
| 3 | 1 | 1 | 14 | 2016-01-01 |
| 4 | 1 | 2 | 8 | 2014-01-01 |
| 5 | 1 | 2 | 10 | 2015-01-01 |
| 6 | 1 | 2 | 11 | 2015-02-01 |
|-------------------------------------------------------|
|-------------------------------|
| id | name |
|-------------------------------|
| 1 | GBP |
| 2 | USD |
|-------------------------------|
我希望能够以当前货币的当前价格获得所有产品。
我按如下方式设置了模型:
public function prices()
{
return $this->hasMany('App\Price', 'product_id', 'id');
}
public function currency()
{
return $this->belongsTo('App\Currency', 'currency_id', 'id');
}
public function product()
{
return $this->belongsTo('App\Product', 'product_id', 'cat_id');
}
没有定义关系。
$products = $this->product->with([
'prices' => function($query) use ($currency) {
$query->where('valid_from', '<=', date('Y-m-d'));
$query->orderBy('valid_from', 'DESC');
$currency = $this->currency->where('name', strtoupper($currency))->limit(1)->get();
$query->where('currency_id', $currency[0]->id);
},
'prices.currency'
])->get();
这几乎可行,但是没有办法只返回一个价格(在$ query上添加限制不起作用)
答案 0 :(得分:0)
您需要将关系更改为belongsToMany