在我的config / locale.php中,我有一个数组'displayLanguage',其中包含key =>值对 如何在刀片中循环遍历此阵列? 我试过以下
@foreach ( {{ Config::get('app.locale.displayLanguage') }} as $itemKey => $itemVal)
{{ $itemKey }}
@endforeach
我收到语法错误,意外'<'。尝试了一些其他的veriation循环这个var而不通过控制器
答案 0 :(得分:5)
如果您的文件位于config/locale.php
,则拨打config('locale.displayLanguage')
;
@foreach(config('locale.displayLanguage') as $key => $value)
{{ $key }}
@endforeach
我在刀片文件中使用全局帮助器config()
。
您的foreach
循环