表数据格式(数据库中的数据)

时间:2018-11-11 06:23:05

标签: php html css laravel laravel-5

获取数组数据并使用爆炸我已经分离了内容。现在,我想在列表中打印这些数据。但是产品正在印刷中。我尝试过使用“中断标签”和“列表标签”的所有可能方式。

这是代码

 <tbody id="test">
           @foreach ($data['samplingData'] as $key => $samplingData)
              <tr> <td>{{$samplingData->doctor_name}}</td> 
               <td>{{$samplingData->date}}</td> 
                @foreach(explode(',', $samplingData->products) as $product) 
                    <td> {{$product}} </td>    
                @endforeach

               <td>{{$samplingData->quantity}}</td> </tr>

           @endforeach
         </tbody>

数据以这种方式打印

Name    date      products    quantity
a     12-12-12    a  a  a  a    1 1 1 1 

我要这样打印

Name    date      products    quantity
a      12-12-12     a           1
                    a           1
                    a           1

我尝试在td中添加tr以及在td中添加列表。

请帮助我格式化数据。

1 个答案:

答案 0 :(得分:0)

基本上,您是为每个<td>创建$product

 <td>@foreach(explode(',', $samplingData->products) as $product) {{$product}} <BR/> @endforeach</td>