質問編集履歴
2
ソースコードの間違いを修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
// 商品をキーワード+最低価格以上で検索(サポートしていない)
|
32
32
|
|
33
|
-
$products = Product::search($keyword)->where('price', '>=' $minPrice)->get();
|
33
|
+
$products = Product::search($keyword)->where('price', '>=', $minPrice)->get();
|
34
34
|
|
35
35
|
```
|
36
36
|
|
1
タグを追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|