jamestpz / laravel-langman-gui
Manage language files with ease.
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 50
pkg:composer/jamestpz/laravel-langman-gui
Requires
- php: ^7.0 || ^7.1
- illuminate/translation: ~5.4
This package is not auto-updated.
Last update: 2025-12-25 08:03:11 UTC
README
Langman is a GUI for managing your JSON language files in a Laravel project.
Installation
Begin by installing the package through Composer. Run the following command in your terminal:
$ composer require themsaid/laravel-langman-gui
Once done, add the following line in your providers array of config/app.php:
Jamestpz\LangmanGUI\LangmanServiceProvider::class
Then publish the configuration file & assets:
php artisan vendor:publish --provider=Jamestpz\\LangmanGUI\\LangmanServiceProvider
Usage
Once you have added the Service Provider point your browser to http://project.dev/langman, using this interface you'll be able to
browse translation keys in different languages, add/remove keys, scan your project files for missing translations, and finally save
your changes to the language JSON files.
Backup
Langman stores a backup of your entire resources/lang directory into storage/langmanGUI, you can use restore the original files
using this backup in case anything went wrong.