Essayez ceci :
$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());
Répertoriez tous les champs de votre tableau produits/options avec price
et currency
déjà listé dans le selectRaw('xxx, xxx, price, currency, IF ...)
méthode ci-dessus. J'espère que cela vous aidera