所以我尝试在视图中使用@each
Laravel Blade方法,但我确实需要当前的itteration。显然在@foreach中我会$key => $value
并使用$ key。有没有想过是否可以用@each完成?
答案 0 :(得分:2)
你可以深入了解:
https://github.com/illuminate/view/blob/master/Factory.php#L266(第266行)
只是一个猜测,但根据源代码,您可以尝试:
@each ('show.names', $names, 'name');
部分地说:
echo $key; // or $name['key'] or $name->key...
或尝试dd($name)
并在结果中查找密钥。