lumite-studios / laravel-json-translation
本包最新版本(v1.1)没有提供许可信息。
默认 Laravel 翻译文件的 JSON 版本。
v1.1
2023-09-12 07:17 UTC
Requires
- php: ^8.1
- laravel/framework: ^9.0|^10.0
README
此包添加了默认 Laravel 翻译文件的 JSON 翻译版本。同时,它还允许使用前缀添加自定义 JSON 翻译。
文档
安装
composer require lumite-studios/laravel-json-translation
使用
use LumiteStudios\JSONTranslations\TranslationServiceProvider as ServiceProvider; class TranslationServiceProvider extends ServiceProvider { /** * Perform post-registration booting of services. */ public function boot() { parent::boot(); $this->loadJsonTranslationsWithPrefix('../../lang/errors', 'errors'); $this->loadJsonTranslationsWithPrefix('../../lang/other', 'other'); } }