cipherpols / laravel-translation
Laravel的数据库翻译器
dev-master
2017-05-05 08:44 UTC
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
This package is not auto-updated.
Last update: 2024-09-15 03:55:01 UTC
README
此包用作默认TranslationServiceProvider的数据库替代品。键将自动添加到数据库中。支持回退翻译。轻松构建GUI来管理所有翻译字符串
安装
使用composer要求此包
composer require cipherpols/laravel-translation
将新的Translation ServiceProvider添加到config/app.php
\CipherPols\Translation\ServiceProvider::class,
迁移
php artisan vendor:publish --provider="CipherPols\Translation\ServiceProvider" --tag="migrations"
然后运行您的迁移
php artisan migrate