質問編集履歴
4
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
'exists' => 'このアイテムナンバーは存在しません',
|
42
42
|
|
43
|
-
'exists.where' => 'この
|
43
|
+
'exists.where' => 'このカテゴリーのアイテムは選択できません',
|
44
44
|
|
45
45
|
];
|
46
46
|
|
@@ -78,7 +78,7 @@
|
|
78
78
|
|
79
79
|
```php
|
80
80
|
|
81
|
-
'exists.where' => 'の
|
81
|
+
'exists.where' => 'このカテゴリーのアイテムは選択できません',
|
82
82
|
|
83
83
|
|
84
84
|
|
3
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
```php
|
14
14
|
|
15
|
-
Rule::exists('items', 'item_no')->where('
|
15
|
+
Rule::exists('items', 'item_no')->where('category', [1,2]),
|
16
16
|
|
17
17
|
```
|
18
18
|
|
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
'exists:items,item_no',
|
58
58
|
|
59
|
-
Rule::exists('items', 'item_no')->where('
|
59
|
+
Rule::exists('items', 'item_no')->where('category', [1,2]),
|
60
60
|
|
61
61
|
],
|
62
62
|
|
@@ -88,11 +88,11 @@
|
|
88
88
|
|
89
89
|
ちなみに
|
90
90
|
|
91
|
-
'exists' => 'のアイテムナンバーは存在しません',
|
91
|
+
'exists' => 'このアイテムナンバーは存在しません',
|
92
92
|
|
93
93
|
の部分は正しく表示できてるので、
|
94
94
|
|
95
|
-
'exists.where' => 'の
|
95
|
+
'exists.where' => 'このカテゴリーのアイテムは選択できません',
|
96
96
|
|
97
97
|
の部分だけ修正すれば求めている結果が得られそうです。
|
98
98
|
|
2
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,9 +38,9 @@
|
|
38
38
|
|
39
39
|
$messages = [
|
40
40
|
|
41
|
-
'exists' => 'のアイテムナンバーは存在しません',
|
41
|
+
'exists' => 'このアイテムナンバーは存在しません',
|
42
42
|
|
43
|
-
'exists.where' => 'のステータスのアイテムは選択できません',
|
43
|
+
'exists.where' => 'このステータスのアイテムは選択できません',
|
44
44
|
|
45
45
|
];
|
46
46
|
|
1
誤字の修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Laravelでのカスタムエラーメッセージ
|
1
|
+
Laravelでのカスタムエラーメッセージの作成方法について
|
test
CHANGED
File without changes
|