Why you don't have languages table in your database, and everywhere you need it just add foreing key language_id?
It seems to be, that everytime will be choosen database by language, so it couldn't be problem with conflicts.
For example, i have many database files on my server, they are the same the only thing that changes is the language, so i want to put a option to user choose the language and so i change de config of my config/database.php in 'connections' => [ 'sqlite' => 'database' .... to the path of the database that correspond to the language the user choose, but, i do it on my controller with config(['database.connections.sqlite.database' => $this->getDatabasePath($lang)]) is it safe? Can it have conflict if two of more users choose two or more different langauges at same time? Or each application run a complete different instance in each client machine?
Please or to participate in this conversation.