dev-master
9999999-devIn-database Translator for Laravel
MIT
The Requires
- php >=5.4.0
- illuminate/support 5.0.x|5.1.x|5.2.x|5.3.x|5.4.x
- illuminate/translation 5.0.x|5.1.x|5.2.x|5.3.x|5.4.x
by Tuan Duong
laravel translations translator
Wallogit.com
2017 © Pedro Peláez
In-database Translator for Laravel
This package is used as an in-database replacement for the default TranslationServiceProvider. Keys will be added to the database automatically. Fallback translating is supported. It's easy to build a GUI to manage all translation strings, (*1)
Require this package with composer:, (*2)
composer require cipherpols/laravel-translation
Add new Translation ServiceProvider to config/app.php, (*3)
\CipherPols\Translation\ServiceProvider::class,
Migrations, (*4)
php artisan vendor:publish --provider="CipherPols\Translation\ServiceProvider" --tag="migrations"
and afterwards run your migrations:, (*5)
php artisan migrate
In-database Translator for Laravel
MIT
laravel translations translator