我被困在一种解决方案中,我想按用户价值获得按列的值。
为1000卢比。我希望所有数据都低于1000。
2000卢比。我想要1000到2000之间的数据。
为3000卢比。我想要2000到3000之间的数据。
我已经按照下面的方法完成了,但是它没有用。
$product = Product::select('product_price')
->get();
foreach ($product as $value) {
if($value->product_price == 1000){
$prod1 = Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price','timeline_product.reward_points' ,'timeline_product.created_at', 'timeline_product.updated_at')
->where('timeline_product.product_price','<=',1000)
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
// $post = array('result' => $prod1);
}elseif ($value->product_price == 2000) {
$prod2 = Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price','timeline_product.reward_points' ,'timeline_product.created_at', 'timeline_product.updated_at')
->whereBetween('timeline_product.product_price', [1000, 2000])
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
// $post = array('result' => $prod2);
}elseif ($value->product_price == 3000) {
$prod3 = Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price','timeline_product.reward_points' ,'timeline_product.created_at', 'timeline_product.updated_at')
->whereBetween('timeline_product.product_price', [2000, 3000])
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
// $post = array('result' => $prod3);
}elseif ($value->product_price == 4000) {
$prod4 = Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price','timeline_product.reward_points' ,'timeline_product.created_at', 'timeline_product.updated_at')
->whereBetween('timeline_product.product_price', [3000, 4000])
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
// $post = array('result' => $prod4);
}
// array_push($product,$post);
}
请帮助实现相同目标。 谢谢
答案 0 :(得分:2)
我猜这就是您需要的:
Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price', 'timeline_product.reward_points', 'timeline_product.created_at', 'timeline_product.updated_at')
->when(request('product_price') <= 1000, function ($q) {
$q->where('timeline_product.product_price', '<=', 1000);
})
->when(request('product_price') > 1000 && request('product_price') <= 2000, function ($q) {
$q->whereBetween('timeline_product.product_price', [1000, 2000]);
})
->when(request('product_price') > 2000 && request('product_price') <= 3000, function ($q) {
$q->whereBetween('timeline_product.product_price', [2000, 3000]);
})
->when(request('product_price') > 3000 && request('product_price') <= 4000, function ($q) {
$q->whereBetween('timeline_product.product_price', [3000, 4000]);
})
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
答案 1 :(得分:1)
根据您的解释,您的产品列表似乎只有product_price = 1000, 2000, 3000 and 4000
因此,根据当前方案和您的代码,似乎您只有四种产品。这是一个更准确的代码,它将根据价格在列表中返回所有产品-
$product = Product::select('product_price')->get();
$prods_according_price = [];
foreach ($product as $value) {
$end_filter = $value->product_price
$start_filter = $end_filter - 1000;
$prods_according_price[$end_filter][] = Product::join('company', 'timeline_product.company_id', '=', 'company.company_id')
->select('company.name', 'company.logo', 'timeline_product.company_id', 'timeline_product.product_name', 'timeline_product.product_desc', 'timeline_product.product_price','timeline_product.reward_points' ,'timeline_product.created_at', 'timeline_product.updated_at')
->whereBetween('timeline_product.product_price',[$start_filter, $end_filter])
->orderBy('timeline_product.updated_at', 'desc')
->limit($limit)
->offset($offset)
->get();
}
print_r ($prods_according_price)
您将获得类似-
的输出Array(
[1000] => Array(
[0] => Array(.....),
[1] => Array(.....),
),
[2000] => Array(
[0] => Array(.....),
[1] => Array(.....),
),
[3000] => Array(
[0] => Array(.....),
[1] => Array(.....),
),
[4000] => Array(
[0] => Array(.....),
[1] => Array(.....),
)
)
如果其中有任何错字或警告,请告诉我。因为我没有执行。