Translatable is a package that helps to make a multilingual models for Laravel.
Install the latest version using Composer.
1composer require pharaonic/laravel-translatable
You can generate your Translatable Model with migrations, just with this command :
1php artisan make:translatable Post --migrations
And this is the result :
1// Models2App\Models\Post3App\Models\PostTranslation45// Migrations62021_05_31_121627_create_posts_table.php72021_05_31_121628_create_post_translations_table.php