例如,如果某个类别包含许多具有多个skus的产品,那么如何获得价格大于10的sku所有产品?
这将返回所有类别,但只附加了预期的skus,其中我只想要具有所述skus的类别。
$category = new Category();
$category->with(array('products', 'products.skus' => function ($query) {
$query->where('price', '>', 10);
}))->get();
答案 0 :(得分:4)
您正在寻找的是whereHas()
。您也可以在没有with(array('products.skus'))
products
$category = new Category();
$categories = $category->with(array('products', 'products.skus' => function ($query) {
$query->where('price', '>', 10);
}))
->whereHas('products.skus', function($query){
$query->where('price', '>', 10);
})->get();
您需要with
和whereHas
两者,但您可以通过将闭包放在变量中来简化代码:
$priceGreaterTen = function($query){
$query->where('price', '>', 10);
};
$category = new Category();
$categories = $category->with(array('products', 'products.skus' => $priceGreaterTen))
->whereHas('products.skus', $priceGreaterTen)
->get();
答案 1 :(得分:0)
对于Laravel 5,试试这个
package application;
import javafx.scene.control.TextField;
import javafx.scene.control.PasswordField;
import javafx.fxml.FXML;
public class Register {
@FXML private TextField userid;
@FXML private TextField colorid;
@FXML private PasswordField pwdid;
public Register() {
// TODO Auto-generated constructor stub
}