在laravel 5.2中无法访问常量变量

时间:2017-04-04 07:25:08

标签: php laravel-5.2 constants laravel-blade

我想在常量文件夹中分隔我的字符串,我创建一些文件来定义我的常量,但是当我想访问它们时,刀片,控制器等中没有任何显示,我尝试在刀片中使用此语法进行访问< / p>

  {{config('constants.welcomeConstants.title')}}

但刀片中没有任何显示,请帮助我,我将所有字符串分开,现在我的网络应用程序中没有文字

我的常量文件是:

 <?php

     return [

             'title' => 'test'

           ];

2 个答案:

答案 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