Laravel5.7系でviewファイルに出力したデータをユニークidごとに1行づつカラム名に合わせて表示させたいです。
カラム名の下に呼応するデータを表示が理想です。
そのためのhtmlに苦戦しております。
現状ものすごく汚いので、醜いとは思いますが、ご指導いただけると幸いです。
display.blade.php <html> <body> <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) @foreach ($datum->toArray() as $d) <tr> <td>{{$d}}</td> </tr> @endforeach @endforeach </tbody> </body> </html> コード
回答2件
あなたの回答
tips
プレビュー