Laravel Blade循环通过配置数组变量

时间:2017-02-21 06:06:41

标签: laravel config blade

在我的config / locale.php中,我有一个数组'displayLanguage',其中包含key =>值对 如何在刀片中循环遍历此阵列? 我试过以下

@foreach ( {{ Config::get('app.locale.displayLanguage') }}  as $itemKey => $itemVal)
         {{ $itemKey }}
@endforeach

我收到语法错误,意外'<'。尝试了一些其他的veriation循环这个var而不通过控制器

1 个答案:

答案 0 :(得分:5)

如果您的文件位于config/locale.php,则拨打config('locale.displayLanguage');

@foreach(config('locale.displayLanguage') as $key => $value)
    {{ $key }}
@endforeach

我在刀片文件中使用全局帮助器config()

您的foreach循环

中也会出现额外的花括号