cipherpols/laravel-translation

Laravel的数据库翻译器

dev-master 2017-05-05 08:44 UTC

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