EC2上でLaravelを使用してます。
コントローラでDBからテーブルデータを取得→ビュー側で表示したのですが、表示した物が「platform]と言うカラムからいきなり配列がズレて表示されてしまいます。
今までにこのような配列の出力結果を経験したことがなく、原因が分からずご質問させて頂いてます。
ご教授頂けたら幸いです。
<配列情報>
<ブラウザ出力画面>
display.blade.php <html> <body> <style> </style> <table border="1"> <tr> <th>id</th> <th>node_id</th> <th>line_id</th> <th>message</th> <th>version_type</th> <th>ip_addr<th> <th>platform</th> <th>translate</th> <th>created_at</th> <th>updated_at</th> </tr> <tbody> @foreach ($data as $datum) <tr> <td>{{$datum->id}}</td><td>{{$datum->node_id}}</td><td>{{$datum->line_id}}</td><td>{{$datum->message}}</td><td>{{$datum->version_type}}</td><td>{{$datum->ip_addr}}</td><td>{{$datum->platform}}</td><td>{{$datum->translate}}</td> </tr> @endforeach </tbody> </body> </html> コード
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use \App\Model\ChatConversation; class ChatConversationController extends Controller { public function display() { $data = ChatConversation::all(); return view('display',['data' => $data]); } ?> コード
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/02 12:17
2020/01/02 12:21
2020/01/02 12:43 編集