有时 $structures 数组具有 null 值,其他变量的相同代码工作正常但在这种情况下不是。@foreach($structures ?? [] as $item) {{ $item }}@endforeach
2 回答
忽然笑
TA贡献1806条经验 获得超5个赞
使用forelse 而不是foreach
@forelse ($structures as $item)
{{ $item }}
@empty
No Items found.
@endforelse
检查forelse条件如下。
@if ($structures->count())
@foreach ($structures as $item)
{{ $item }}
@endforeach
@else
No Items found.
@endif
qq_遁去的一_1
TA贡献1725条经验 获得超7个赞
()我通过添加周围表达式解决了这个问题$structures ?? []。
@foreach(($structures ?? []) as $item)
{{ $item }}
@endforeach
- 2 回答
- 0 关注
- 92 浏览
添加回答
举报
0/150
提交
取消