To ensure compatibility with the latest version, add a 'connection' entry in the config/world.php
file. You have two options to do this:
Open the config/world.php
file and insert the following code snippet:
/*
|--------------------------------------------------------------------------
Connection
|--------------------------------------------------------------------------
*/
'connection' => env('WORLD_DB_CONNECTION', env('DB_CONNECTION')),
Alternatively, you can republish the configuration file using the following Artisan command:
php artisan vendor:publish --tag=world --force
However, be aware that this command will overwrite any previous changes made to the configuration file.