├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Command └── TranslationHelperCommand.php ├── TranslationHelperServiceProvider.php ├── config └── translation-helper.php └── helpers.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /vendor/ 3 | .DS_Store 4 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/composer.json -------------------------------------------------------------------------------- /src/Command/TranslationHelperCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/src/Command/TranslationHelperCommand.php -------------------------------------------------------------------------------- /src/TranslationHelperServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/src/TranslationHelperServiceProvider.php -------------------------------------------------------------------------------- /src/config/translation-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/src/config/translation-helper.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subotkevic/laravel-json-translation-helper/HEAD/src/helpers.php --------------------------------------------------------------------------------