cloudmonitor/translatable 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cloudmonitor/translatable

Composer 安装命令:

composer require cloudmonitor/translatable

包简介

Translate model attributes into any number of languages.

README 文档

README

Translate Eloquent attributes into multiple languages and use getLocale() to seamlessly query the right translation.

Install

composer require cloudmonitor/translatable

Prepare Eloquent models

Similar to other special attributes in Eloquent, such as $fillables, translatable attributes must be defined as an array. It is as simple as giving the name of the database column:

protected $translatable = [
    'name',
];

Translatable will now only be observing these attributes and skip the rest.

Using translations

As Translatable uses Laravels app()->getLocale() it means it will figure out which language to use when you query name.

For instance, your locale is currently da (Danish), so you want to update a book title. Simply do it as there was no translation implementation:

$book = Book::find($id);
$book->name = 'New name for Danish version';
$book->save();

Or as an update method:

Book::find($id)->update(['name' => 'New name for Danish version']);

Similar when you want to get the name in the current locale you simply query it:

return Book::find($id)->name;

Other locales

Sometimes you want to update all translations or in a specific language or simply in a different than you are using. It could be a Danish moderator who wants to update the English title, titles for several languages, or something different.

Book::find($id)->setTranslation('name', 'en', 'Name in English');

Similarly, a specific language can be queried:

Book::find($id)->getTranslation('name', 'en');

Order By translated columns

Since the build-in ->orderBy() won't work as the data is stored in JSON format, an optimized ->orderByTranslation() has been added.

First parameter is column name, second will be direction and third locale. Only first column is required.

Book::orderByTranslation('name', 'asc', 'en');

Migrations

Behind the scenes Translatable uses JSON columns in the database to store multiple versions in the same column:

$table->json('name');

cloudmonitor/translatable 适用场景与选型建议

cloudmonitor/translatable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 406 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 09 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「laravel」 「localization」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 cloudmonitor/translatable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 cloudmonitor/translatable 我们能提供哪些服务?
定制开发 / 二次开发

基于 cloudmonitor/translatable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 406
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 9
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-09-01