From 3a5a95cba9b52b907ca07646776512f9c7680df3 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Sat, 7 Feb 2026 21:28:49 +0100 Subject: [PATCH] call TYPESENSE_API_KEY in SearchController.php --- app/Http/Controllers/SearchController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index 245015e..e66e171 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -16,7 +16,7 @@ class SearchController extends Controller public function __construct() { $this->client = new Client([ - 'api_key' => 'xyz', + 'api_key' => env('TYPESENSE_API_KEY'), 'nodes' => [ [ 'host' => env('TYPESENSE_CONNECTION'),