I'm trying to output a simple config variable within my Antlers view without success:
Blade (working just fine)
{{ config('services.meilisearch.host') }}
Antlers, does not work
{{ config:services:meilisearch.host }}
{{ config:services:meilisearch:host }}
Accordion to the docs, that's the way to go. What am I missing here? ._.
The array in my services.php looks like this:
'meilisearch' => [
'host' => env('MEILISEARCH_HOST'),
'master_key' => env('MEILISEARCH_MASTER_KEY'),
'public_key' => env('MEILISEARCH_PUBLIC_KEY')
],