shaunthegeek/laravel-lang-db
最新稳定版本:v1.0.0
Composer 安装命令:
composer require shaunthegeek/laravel-lang-db
包简介
Manage Laravel translations in the database and export them to JSON files.
README 文档
README
Manage Laravel translations in the database and export them to JSON files.
Installation
composer require shaunthegeek/laravel-lang-db
Usage
- Run migrations to create the table:
php artisan vendor:publish --tag=laravel-lang-db-migrations php artisan migrate
- Import translations from
/langdirectory to database:
php artisan lang:import
This will read all .json files in /lang and populate the database. By default, it skips existing keys. Use --force to update existing records:
php artisan lang:import --force
- Add translations to the
languagestable, either by directly operating the database or via the admin interface (e.g., FilamentPHP).
| locale | key | value |
|---|---|---|
| en | messages.welcome | Welcome |
| zh_CN | messages.welcome | 欢迎 |
- Export translations to
/langdirectory:
php artisan lang:export
This will create/update:
/lang/en.json/lang/zh_CN.json
Testing
composer test
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-30