将变量添加到可跨控制器和视图访问的Laravel框架的最佳方法是什么?
我不想使用.env
来存储变量,因为它不能通过Git获得。
答案 0 :(得分:22)
您可以在config
文件夹中创建文件。 e.g。
config
|- constants.php
在constants.php中,您可以定义全局变量
<?php
return [
/*
|--------------------------------------------------------------------------
| User Defined Variables
|--------------------------------------------------------------------------
|
| This is a set of variables that are made specific to this application
| that are better placed here rather than in .env file.
| Use config('your_key') to get the values.
|
*/
'company_name' => env('COMPANY_NAME','Acme Inc'),
'company_email' => env('COMPANY_email','contact@acme.inc'),
];
您可以使用以下两个函数之一访问这些变量:
Config::get('constants.company_name')
config('constants.company_name')
对于Blade也是如此:
{{ config('constants.company_email') }}