質問編集履歴
1
コントローラーファイルのコード記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -49,3 +49,47 @@
|
|
49
49
|
コード
|
50
50
|
|
51
51
|
```
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
Controllerファイル
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<?php
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
namespace App\Http\Controllers;
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
use Illuminate\Http\Request;
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
use \App\Model\ChatConversation;
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
class ChatConversationController extends Controller {
|
78
|
+
|
79
|
+
public function all()
|
80
|
+
|
81
|
+
{
|
82
|
+
|
83
|
+
$data = ChatConversation::all();
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
return view('chat_conversation',['data' => $data]);
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
コード
|
94
|
+
|
95
|
+
```
|