我无法获得以下口才查询的结果:
return
Cost::where('zipcode_start', '>=', 8000)
->where('zipcode_end', '<=', 8000)
->pluck('price);
在该费用表中,我有一些价格取决于所提供的邮政编码的范围。
答案 0 :(得分:1)
我认为您的比较应该改变立场。
Cost::where([
['zipcode_start, '<=', 8000],
['zipcode_end', '>=', 8000]
])
->pluck('price');