我根据上述代码的两列上的价格过滤器获得产品。我可以使用其他简短代码或简短此代码和任何laravel inthuild功能

发布于 2025-01-23 08:08:50 字数 533 浏览 0 评论 0原文

我根据上述代码上的两列上的价格过滤器获得产品。

我可以使用其他快捷代码或简短此代码吗

public function index(Request $request)
{
    $products = Product::query()
        ->where('status', '1')
        ->when($request->range, fn ($query) => $query->whereBetween('actual_price', [0, 1600]))
        ->when($request->range, fn ($query) => $query->orWhereBetween('saleable_price', [0, 1600]))
        ->orderBy('saleable_price', 'asc')->get();
    return view('frontend.product.index', compact('products'));
}

I get product based on a price filter on two columns like the above code.

can I do with other shortcode or short this code

public function index(Request $request)
{
    $products = Product::query()
        ->where('status', '1')
        ->when($request->range, fn ($query) => $query->whereBetween('actual_price', [0, 1600]))
        ->when($request->range, fn ($query) => $query->orWhereBetween('saleable_price', [0, 1600]))
        ->orderBy('saleable_price', 'asc')->get();
    return view('frontend.product.index', compact('products'));
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心清如水 2025-01-30 08:08:50

您可以简单地将两个范围查询放入一个回调中

public function index(Request $request)
{
    $products = Product::query()
        ->where('status', '1')
        ->when($request->range, function ($query) { 
           $query->whereBetween('actual_price', [0, 1600])
              ->orWhereBetween('saleable_price', [0, 1600]);
        })
        ->orderBy('saleable_price', 'asc')->get();
    return view('frontend.product.index', compact('products'));
}

You can simply put both your range queries into one callback

public function index(Request $request)
{
    $products = Product::query()
        ->where('status', '1')
        ->when($request->range, function ($query) { 
           $query->whereBetween('actual_price', [0, 1600])
              ->orWhereBetween('saleable_price', [0, 1600]);
        })
        ->orderBy('saleable_price', 'asc')->get();
    return view('frontend.product.index', compact('products'));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文