FAQ
Do you have any example code?
Examples for all the package features can be found in the code used for the tests.
Can I ask you some questions?
Got any question or suggestion? Feel free to open an Issue.
Is there anything I can help you with?
You are awesome! Watch the repo and reply to the issues. You will help offering a great experience to the users of the package. #communityWorks
How to fix collisions with other traits/methods?
Translatable is fully compatible with all kinds of Eloquent extensions, including Ardent. If you need help to implement Translatable with these extensions, see this example.
How do I migrate my existing table to use laravel-translatable?
Please see the installation steps to understand how your database should be structured.
If your properties are written in english, we recommend using these commands in your migrations:
How do I sort by translations?
We provide a scope to order the main model entries by its translation values.
How can I select a model by translated field?
For example, let's image we want to find the Post
having a PostTranslation
title equal to My first post
.
You can find more info at the Laravel Querying Relations docs. But we also provide several scopes to cover the most common scenarios.
Why do I get a mysql error while running the migrations?
If you see the following mysql error:
Then your tables have the MyISAM engine which doesn't allow foreign key constraints. MyISAM was the default engine for mysql versions older than 5.5. Since version 5.5, tables are created using the InnoDB storage engine by default.
How to fix
For tables already created in production, update your migrations to change the engine of the table before adding the foreign key constraint.
For new tables, a quick solution is to set the storage engine in the migration:
The best solution though would be to update your mysql version. And always make sure you have the same version both in development and production environment!
Last updated