From 29279bc6c58ba95e4c12d7ee59257146e805e711 Mon Sep 17 00:00:00 2001 From: Aimeos Date: Sun, 14 Sep 2025 19:07:17 +0200 Subject: [PATCH] Change SCOUT_DRIVER default from 'algolia' to 'collection' Using a default driver that isn't available out of the box and requires installing additional packages and configuration is a problem when a package requires laravel/scout. In that case, the package can't configure laravel/scout automatically and exceptions will be thrown making the user think that the package doesn't work. There should be a working default for those developers who don't read documentation well. --- config/scout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/scout.php b/config/scout.php index e8a3bdda..e073cce9 100644 --- a/config/scout.php +++ b/config/scout.php @@ -16,7 +16,7 @@ | */ - 'driver' => env('SCOUT_DRIVER', 'algolia'), + 'driver' => env('SCOUT_DRIVER', 'collection'), /* |--------------------------------------------------------------------------