gpt4 book ai didi

php - Laravel:如何在 Blade 模板中获取直接配置值?

转载 作者:行者123 更新时间:2023-12-01 23:26:41 26 4
gpt4 key购买 nike

我想获取 Blade 中的配置值。

config/define.php
<?php
return [
'show' => array(1 => 'Show',0 => 'Hide' ),
];

我找到了一个代码

{{ Config::get('define.show') }}

但我想使用:

{{ $showarray = Config::get('define.show') }}

@foreach ($master as $pt)
{{ $showarray[$pt->show_flag] }}
@endforeach

但是它不起作用。请帮助我!

最佳答案

你可以通过 -

@foreach ($master as $pt)
{{ Config::get('define.show.' . $pt->show_flag) }} // concatenate the value
@endforeach

或者使用@php标签-

@php
$showarray = Config::get('define.show');
@endphp

@foreach ($master as $pt)
{{ $showarray[$pt->show_flag] }}
@endforeach

您还可以使用config()访问配置。

关于php - Laravel:如何在 Blade 模板中获取直接配置值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53631037/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com