回答編集履歴
2
link
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
https://readouble.com/laravel/6.x/ja/eloquent.html#mass-assignment
|
35
|
+
[https://readouble.com/laravel/6.x/ja/eloquent.html#mass-assignment](https://readouble.com/laravel/6.x/ja/eloquent.html#mass-assignment)
|
36
36
|
|
37
37
|
|
38
38
|
|
@@ -40,7 +40,7 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
-
https://readouble.com/laravel/6.x/ja/controllers.html#resource-controllers
|
43
|
+
[https://readouble.com/laravel/6.x/ja/controllers.html#resource-controllers](https://readouble.com/laravel/6.x/ja/controllers.html#resource-controllers)
|
44
44
|
|
45
45
|
|
46
46
|
|
1
整備
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Illuminate\Http\Request に save メソッドはありません。
|
1
|
+
`Illuminate\Http\Request` に `save` メソッドはありません。
|
2
2
|
|
3
|
-
App\Model\ChatConversation モデルの save メソッドを利用してDBに保存しましょう。
|
3
|
+
`App\Model\ChatConversation` モデルの `save` メソッドを利用してDBに保存しましょう。
|
4
4
|
|
5
5
|
|
6
6
|
|
@@ -26,9 +26,9 @@
|
|
26
26
|
|
27
27
|
|
28
28
|
|
29
|
-
また、 fill メソッドを使用して値を複数代入する場合は、
|
29
|
+
また、 `fill` メソッドを使用して値を複数代入する場合は、
|
30
30
|
|
31
|
-
App\Model\ChatConversation の $fillable プロパティにカラムのホワイトリストを設定する必要があります。
|
31
|
+
`App\Model\ChatConversation` の `$fillable` プロパティにカラムのホワイトリストを設定する必要があります。
|
32
32
|
|
33
33
|
|
34
34
|
|
@@ -46,4 +46,4 @@
|
|
46
46
|
|
47
47
|
また、関数名は任意ではありますが公式のリソースコントローラのアクション名に準拠するとより良いと思います。
|
48
48
|
|
49
|
-
add ではなく、 create の命名を推奨します。
|
49
|
+
`add` ではなく、 `create` の命名を推奨します。
|