localfoodnodes/language-table

Visualize language file diffs in Laravel to help maintain translations in big projects.

This package's canonical repository appears to be gone and the package has been frozen as a result.

0.1.2 2017-12-08 19:02 UTC

This package is not auto-updated.

Last update: 2021-05-27 01:46:08 UTC


README

Language table is a Laravel package that parses your language files and displays all keys as a table. It checks that all keys are set for all langages and shows an error for any inconsistencies.

Install

  • Install the package using composer require localfoodnodes/language-table
  • Add the service provider in your config/app.php LocalFoodNodes\LanguageTable\ServiceProvider::class
  • Add route to your routes file. Route::get('/your/route', '\LocalFoodNodes\LanguageTable\Controller@index');