ifresh/laravel-enum-translations
Composer 安装命令:
composer require ifresh/laravel-enum-translations
包简介
README 文档
README
a Laravel package that simplifies the translation of enums in your applications, making it easy to associate enum values with translated labels for multiple languages. It enhances code readability and maintainability by handling enum translations seamlessly.
This makes it super easy to provide your front-end with a list of enum-keys with corresponding labels.
Features
- Automatically load translated labels for your application Enums
- Provide a fallback based on the enum key to easily find missing translations
- Follows the configured locale of your application
Getting started
- Use composer to install the package
composer require ifresh/laravel-enum-translations - Publish the configuration files
./artisan vendor:publish --tag=laravel-enum-translations - Modify the
lang/en/enums.phpfile OR copy this file to your application's locale folder.
Example
Given the following enum:
namespace App\Enums; enum Cards: string { case Hearts = 'hearts'; case Diamonds = 'diamonds'; case Clubs = 'clubs'; case Spades = 'spades'; }
You can add translated values by modifying the lang/en/enums.php file:
return [ 'cards' => [ 'hearts' => 'Hearts ❤️', 'diamonds' => 'Diamonds 💎', 'clubs' => 'Clubs ♣️', 'spades' => 'Spades ♠️', ], ];
Now to use these translations in your application by using the EnumTranslatorFacade:
If you simply want to get the list of all the translations for a single Enum (for instance when filling a dropdown) you
can use the translate method available on the Facade:
use App\Enums\Cards; use IFresh\EnumTranslations\EnumTranslatorFacade as EnumTranslator; $translations = EnumTranslator::translate(Cards::class); /* * [ * 'hearts' => 'Hearts ❤️', * 'diamonds' => 'Diamonds 💎', * 'clubs' => 'Clubs ♣️', * 'spades' => 'Spades ♠️', * ] */
It is also possible to get the translated value for a single enum value, to do this you can use the translateValue method instead:
EnumTranslator::translateValue(Cards::class, Cards::Hearts); // 'Hearts ❤️'
When you pass null as the selected enum value, an empty string is returned:
EnumTranslator::translateValue(Cards::class, null); // ''
Contributing
All contributions are welcome! Please open a GitHub Issue or create a Pull-request
License
The Laravel enum translations package is free software released under the MIT License. See LICENSE.txt for details.
ifresh/laravel-enum-translations 适用场景与选型建议
ifresh/laravel-enum-translations 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.35k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2023 年 10 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ifresh/laravel-enum-translations 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ifresh/laravel-enum-translations 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.35k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-09