Laravel Translations converts the translation files of different language. For Laravel Language Localization [check here] (https://laravel.com/docs/5.7/localization)
This app converts single file and multiple files.
Convert from Excel - Can convert from specific formatted xlsx and csv to translated php array file. Convert to Excel - Can convert from php to xlsx file with specific formatting.
Convert Excel to Zip - Can convert multiple sheets from specific formatted xlsx and csv to translated php array files and downloaded as zip. Convert Zip to Excel - Zip containing all php files under a folder, which gets converted into xlsx with multiple sheets.
Requires PHP 7.2+
You can install Laravel Translation App in only 6 commands!
The first is to clone the projet :
git clone https://github.com/curotec/laravel-translation.git
Go to the root of the project and launch the second command to launch the projects files
composer dump-autoload
At the root of the project, lets copy the environment file.
For Linux and Mac
cp .env.example .env
For Windows
copy .env.example .env
Still at the root of the project, lets setup the Key.
php artisan key:generate
Still at the root of the project, launch the database. Edit the .env file and setup the DB credentials and then migrate DB.
php artisan migrate
Now still at the root of the project, launch the App
php artisan serve
Can check and download the demo data from the dashboard of the App. You will find the link there.