Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想弄清楚如何algolia在我的 laravel.env文件中编写我的搜索索引。
algolia
.env
我尝试过使用 public$indices = env('ALGOLIA');但它不起作用。我当然写ALGOLIA=some_index在我的.env文件里。
$indices = env('ALGOLIA');
ALGOLIA=some_index
那么我怎样才能$indices接受环境变量呢?
$indices
.env变量只是覆盖配置变量。
在给定的配置文件中声明您的变量或创建一个新的(谷歌是一个新的)。然后你可以直接到.environment文件。
app.php
'algolia' => env('ALGOLIA')
ALGOLIA=123
然后你用Config::get('app.algolia');.
Config::get('app.algolia');