回答編集履歴
3
if文を修正しました
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
$post->fill($request->all());
|
10
10
|
|
11
|
-
if ($request->file('image')->isValid()) {
|
11
|
+
if ($request->hasFile('image') && $request->file('image')->isValid()) {
|
12
12
|
|
13
13
|
$imagepath = $request->image->store('public');
|
14
14
|
|
2
if文のコメントを削除
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
$post->fill($request->all());
|
10
10
|
|
11
|
-
if ($request->file('image')->isValid()) {
|
11
|
+
if ($request->file('image')->isValid()) {
|
12
12
|
|
13
13
|
$imagepath = $request->image->store('public');
|
14
14
|
|
1
コードの1行目を追加
test
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
```php
|
6
|
+
|
7
|
+
$post = Post::findOrFail($id);
|
6
8
|
|
7
9
|
$post->fill($request->all());
|
8
10
|
|