我的表中有json列,其中数据如下:
{
"9997d217f153577526c5c51e2fb7b35a":{
"rowId":"9997d217f153577526c5c51e2fb7b35a",
"id":1,
"name":"grjyj",
"qty":"1",
"price":10,
"options":{
"installation":true
},
"tax":0,
"subtotal":10
}
}
我可以通过循环此列来获取所有数据,除了options
部分,其中数组是数组。
my blade
@foreach($invoice['content'] as $product)
<tr>
<td>
{{$product['name']}}
</td>
<td>
{{$product['qty']}}
</td>
<td>
@foreach($product['options'] as $option)
{{$option['installation']}}
@endforeach
</td>
<td>
${{number_format($product['subtotal'], 0)}}
</td>
</tr>
@endforeach
screenshot
options
值?答案 0 :(得分:-1)
我已将循环更改为下面的代码并返回我的值:
@foreach($product['options'] as $option => $result)
{{ $result }}
@endforeach