Replies: 1 comment 4 replies
-
Hi, I believe we removed that check in the latest version of the package. Coul you try upgrading? If it still exists there, feel free to create a PR that removes it. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, first of all thank you for a good package!
I'm trying to find if I made misconfiguration but it looks like maybe this is the way its done.
What is the reason for this part in TranslationLoaderManager?
if (is_a($model, LanguageLine::class)) { if (! Schema::hasTable($model->getTable())) { return parent::load($locale, $group, $namespace); } }
This part is making foreach translation checking if table exist?
In debugbar I see hundreds of requests like this:
select * from information_schema.tables where table_schema = '....' and table_name = 'language_lines' and table_type = 'BASE TABLE'
Thank you for help.
Have a nice day, Klemen
Beta Was this translation helpful? Give feedback.
All reactions