英文:
Laravel Blade: Show two fields of the same array in
问题
以下是翻译好的内容:
我想展示这个数组,这是一个 Eloquent 查询的结果:
$resultados = $this->model::all()->pluck('descricao', 'datapagamento');
我可以像这样循环遍历分离的字段:
@foreach ($data as $datas)
{{ $datas }}<br />
@endforeach
但是,当我尝试循环遍历 $resultados
时,它只显示数组中的一个字段。
并且当我在不查看它的情况下显示变量时,它运行正常。
我的目标是实现这种布局。
英文:
i wanna show this array, that is a result of a eloquent query:
$resultados = $this->model::all()->pluck('descricao','datapagamento');
I can loop to the separated fields like this:
@foreach ($data as $datas)
{{ $datas }}<br />
@endforeach
but when i try to loop through the $resultados, that contais two fields, it only show one field of the array
and when i show the variable without look it works fine
my goal is to do this layout
答案1
得分: 1
你必须更改循环并包含键:
@foreach ($data as $key => $datas)
{{ $key }}: {{ $datas }}
@endforeach
英文:
You must change the loop and include the key:
@foreach ($data as $key => $datas)
{{ $key }}: {{ $datas }}<br />
@endforeach
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论