2017 © Pedro Peláez
 

library laravel-translation

In-database Translator for Laravel

image

cipherpols/laravel-translation

In-database Translator for Laravel

  • Friday, May 5, 2017
  • by tuandm
  • Repository
  • 1 Watchers
  • 8 Stars
  • 134 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 11 % Grown

The README.md

Localization from a database

This package is used as an in-database replacement for the default TranslationServiceProvider. Keys will be added to the database automatically. Fallback translating is supported. It's easy to build a GUI to manage all translation strings, (*1)

Installation

Require this package with composer:, (*2)

composer require cipherpols/laravel-translation

Add new Translation ServiceProvider to config/app.php, (*3)

\CipherPols\Translation\ServiceProvider::class,

Migrations, (*4)

php artisan vendor:publish --provider="CipherPols\Translation\ServiceProvider" --tag="migrations" 

and afterwards run your migrations:, (*5)

php artisan migrate

The Versions

05/05 2017

dev-master

9999999-dev

In-database Translator for Laravel

  Sources   Download

MIT

The Requires

 

laravel translations translator