我想在常量文件夹中分隔我的字符串,我创建一些文件来定义我的常量,但是当我想访问它们时,刀片,控制器等中没有任何显示,我尝试在刀片中使用此语法进行访问< / p>
{{config('constants.welcomeConstants.title')}}
但刀片中没有任何显示,请帮助我,我将所有字符串分开,现在我的网络应用程序中没有文字
我的常量文件是:
<?php
return [
'title' => 'test'
];
答案 0 :(得分:0)
// /config/constants.php
return [
'welcome' => [
'hello' => 'Hello',
],
];
// Access config value
config('constants.welcome.hello');
答案 1 :(得分:0)
只需使用
php artisan config:clear or php artisan config:cache