Download the PHP package jetcod/laravel-model-translation without Composer
On this page you can find all versions of the php package jetcod/laravel-model-translation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jetcod/laravel-model-translation
More information about jetcod/laravel-model-translation
Files in jetcod/laravel-model-translation
Package laravel-model-translation
Short Description Laravel Model Translation simplifies managing model attribute translations in your Laravel applications.
License MIT
Informations about the package laravel-model-translation
Laravel Model Translation
Laravel Translation is a package that provides a simple and efficient way to manage translations in your Laravel applications. It allows you to store translations of all your models attributes in database, making it easy to manage and update translations without modifying language files.
Installation
You can install the package via Composer:
Configuration
After installing the package, you need to publish the configuration file and migration:
Then, run the migration to create the translations table:
In order to avoid conflictig with other packages and database tables, you can customize your database table name in the config/translation.php
config file:
Usage
Setup model
First, you need to import the Jetcode\Laravel\Translation\Traits\HasTranslations
trait in your model and specify the fields you want to translate:
Alternatively, you can specify the fields in a method in your model class:
NOTE: The
TRANSLATABLE_ATTRIBUTES
constant or thegetTranslatableAttributes
method return value can be either a string or an array of the model attribute names.
Defining translatable attributes is optional, but it is recommended to define them.
Create a translation
Now, you can create translations for the model attributes through the defined relations:
Retrieve translated model
This package is compatible with Laravel localization system, so the models are translated according to the current locale. All you need to do is to set the appl locale and your model will be translated automatically:
Alternatively, you can use the withLocale
method to retrieve the translated model for a specific locale:
Testing
The package includes tests that you can run using PHPUnit
:
You can also run static analysis with PHPStan:
License
This package is open-source software licensed under the MIT license.