0
This is the example of the consultation sql
, I am trying to make this same consultation on Laravel
if you can help.
SELECT p.nome,(select min(op.preco_unitario) from opcao_produto op where p.id = op.produto_id) preco from produto p WHERE (select min(op.preco_unitario) from opcao_produto op where p.id = op.produto_id) BETWEEN 202 and 1000
is doing with
Eloquent
?– novic