如何使用下面的 whereHas like sql 查询来创建雄辩的范围
表属性(id、title、slug、category_id、location_id、image)
表类别(id,名称,slug)
表城市(id,名称,slug)
我需要的简单 sql 查询
Select * from property
join category on property.category_id=category.id
join city on property.location_id = city.id
where category.name = $query and city.name=$query
我想在Property
模型中做出雄辩的范围