Download the PHP package zash/laravel-translations-db without Composer
On this page you can find all versions of the php package zash/laravel-translations-db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download zash/laravel-translations-db
More information about zash/laravel-translations-db
Files in zash/laravel-translations-db
Package laravel-translations-db
Short Description A database translations implementation for Laravel 5, forked from hpolthof/laravel-translations-db
License GPL2
Informations about the package laravel-translations-db
Localization from a database
This package was created, as an in-place replacement for the default TranslationServiceProvider and mend for everyone who got tired of collecting translations in language files and maintaining dozens of arrays, filled with lots and lots of keys. Keys will be added to the database automatically, so no more hussling with adding your keys to the translations file. You'll never forget to translate a key anymore! In production your keys will be cached to ensure the localization stays fast!
Installation
Require this package with composer:
Like to live on the edge? Use:
After updating composer, we'll have to replace the TranslationServiceProvider the our ServiceProvider in config/app.php.
Find:
and Replace this with:
The ServiceProvider will now be loaded. To use this package properly you'll also need the create a table in your database, this can be achieved by publishing the config and migration of this package.
Run the following command:
and afterwards run your migrations:
And that's all there is to it!
Usage
You can just start using translations as you would normaly do with the Laravels default package. The functions and can be used as you normaly would.
For more information about Localization and the usage of these functions, please refer to the Documentation on the mather.
Files are still possible
The usage of translation files is however still possible. Every translation prefixed by a namespace is parsed through the old TranslationServiceProvider. This is needed for external packages that come with there own translation files. But in general you shouldn't be bothered by this.
Importing and exporting
To ease the proces of migrating to translations in the database, two commands are available since version 0.3.
Import
To import all translations out of your current language files, you can use the command:
This will import all available translations in language files into the database.
To import just some specifics you can also make use of the options and .
Export
To dump the translations from your database back to your filesystem, use:
The options and are also available for this command. Caution: all current files will be overwritten, so use with care!
All versions of laravel-translations-db with dependencies
illuminate/translation Version 5.*
illuminate/database Version 5.*
illuminate/cache Version 5.*