mammut-alex/polyglot
Translate model column in laravel
1,929
2
| Install | |
|---|---|
composer require mammut-alex/polyglot |
|
| Latest Version: | 0.2.0 |
| PHP: | >=7.1.3 |
| License: | MIT |
| Last Updated: | Sep 20, 2018 |
| Links: | GitHub · Packagist |
Maintainer: MammutCris
Polyglot
Installation
Require this package in your composer.json and update composer.
"mammut-alex/polyglot": "0.2.*"
or composer require mammut-alex/polyglot
Documentation
Translator works with a database, it looks for a prefix code language
Here is an example Migration
$table->string('name_en');
$table->string('name_uk');
$table->string('name_ru');
To use polyglot, connect it to your model and use feature for translation.
namespace App;
use Illuminate\Database\Eloquent\Model;
use MammutAlex\Polyglot\Polyglot;
class YouModel extends Model
{
use Polyglot;
public function name()
{
return $this->translation('name');
}
...
The function will return the translation in the selected language user
An example of the use in blade:
<h1>{{$model->name()}}</h1>
See more example in tests, documentation being developed