大家好,我希望有人能帮助我,我不明白为什么我有这个错误。我在视图中的刀片的@foreach中做错了什么?非常感谢,这是我的代码。
返回:
$audits = DB::table('esiti_audit')->where('employee', $name)->select(['master_zone', 'subarea', 'microarea', 'data_audit', 'esito'])->orderByDesc('data_audit')->get()->toArray();
$data = [];
foreach ($audits as $audit) {
$areaKey = "{$audit->master_zone}|{$audit->subarea}|{$audit->microarea}";
$data[$areaKey][] = [
'esito' => $audit->esito,
'data_audit' => $audit->data_audit
];
};
};
前
<div class="audit-daily-intestazione">
@if (empty($data))
@else
@foreach ($data as $item => $audits)
<div>
<span class="audit-daily-text39"><strong
style="font-size: 13px;">{{ \Carbon\Carbon::parse($audits->data_audit)->format('d/m') }}</strong></span>
</div>
@endforeach
@endif
</div>
1条答案
按热度按时间oknwwptz1#
试试这个