Hãy thử điều này:
$rateEruToDolor =2;
$rateAedToDolor =3;
$products = Product::join('product_options', 'products.id', '=', 'product_options.product_id')
->join('options', 'product_options.option_id', '=', 'options.id')
->selectRaw('price, currency, IF(currency=0, price * ?, IF(currency=1, price * ?, price))
as dolor_price', [$rateEruToDolor, $rateAedToDolor]);
$products->orderBy('dolor_price');
dd($products->get()->toArray());
Liệt kê tất cả các trường trong bảng sản phẩm / tùy chọn của bạn cùng với price
và currency
đã được liệt kê trong selectRaw('xxx, xxx, price, currency, IF ...)
phương pháp trên. Hy vọng điều này sẽ giúp