Package Data | |
---|---|
Maintainer Username: | aboudeh87 |
Maintainer Contact: | aboudeh1987@gmail.com (Abdulkader Zeineddin) |
Package Create Date: | 2017-07-10 |
Package Last Update: | 2021-03-13 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:05:36 |
Package Statistics | |
---|---|
Total Downloads: | 5,118 |
Monthly Downloads: | 9 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
A WebUI to manage translation files for Laravel.
1- Add the package to your project.
Add it to your composer.json
file
"geniusts/laravel-translation-manager": "~0.1.0"
or install it via composer
.
composer require geniusts/laravel-translation-manager
2- Add the package service provider to config/app.php
file, under providers
section.
GeniusTS\TranslationManager\TranslationManagerServiceProvider::class,
The service provider will added automatically if you are using Laravel 5.5
3- If you want to change prefix or middleware applied on routes, publish configuration file.
artisan vendor:publish --provider='\GeniusTS\TranslationManager\TranslationManagerServiceProvider' --tag=config
4- If you want to change views layouts, publish views files.
artisan vendor:publish --provider='\GeniusTS\TranslationManager\TranslationManagerServiceProvider' --tag=views
This package is free software distributed under the terms of the MIT license.