回答編集履歴
2
追記
test
CHANGED
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
コントローラーに書いていたバリデーションを FormRequest にまとめて記述する。
|
82
82
|
|
83
|
-
分散しちゃうとメンテ
|
83
|
+
分散しちゃうとメンテナンス性を損ねるし、それぞれが独立してエラーを出してしまいます。
|
84
84
|
|
85
85
|
|
86
86
|
|
1
修正
test
CHANGED
@@ -142,7 +142,7 @@
|
|
142
142
|
|
143
143
|
'pref' => 'required',
|
144
144
|
|
145
|
-
'image' => 'nullable|file|image|mime:jpg,jpeg,png',
|
145
|
+
'image' => 'nullable|file|image|mimes:jpg,jpeg,png',
|
146
146
|
|
147
147
|
'body' => 'nullable',
|
148
148
|
|