@giogiosw Maybe edit the config/app.php file with...
Top of file... Elvis operator saying if there is a cookie value for lang, use that... otherwise use en
<?php
$language = cookie('lang') ?: 'en';
return [
Change this mid-file... pass the cookie lang or en to the config.
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => $language,