We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02416e4 commit ee912cbCopy full SHA for ee912cb
README.md
@@ -94,6 +94,7 @@ ES_CLOUD_ID=
94
ES_API_ID=
95
ES_API_KEY=
96
ES_SSL_CERT=
97
+ES_INDEX_PREFIX=
98
```
99
100
<details>
@@ -132,7 +133,7 @@ Add the `elasticsearch` connection in `config/database.php`
132
133
'api_id' => env('ES_API_ID', ''),
134
'api_key' => env('ES_API_KEY', ''),
135
'ssl_cert' => env('ES_SSL_CERT', ''),
- 'index_prefix' => false, //prefix all Laravel administered indices
136
+ 'index_prefix' => env('ES_INDEX_PREFIX', false),
137
'query_log' => [
138
'index' => 'laravel_query_logs', //Or false to disable query logging
139
'error_only' => true, //If false, the all queries are logged
0 commit comments