justraviga/laravel-deepl
Laravel DeepL Translator
Provides access to DeepL API for Laravel projects
Table of contents
Installation
To get the latest version of Laravel DeepL, simply require the project using Composer:
$ composer require justraviga/laravel-deepl
Or manually update require block of composer.json and run composer update.
{
"require": {
"justraviga/laravel-deepl": "^0.1"
}
}
Using
Translate single string
use JustRaviga\Deepl\Facades\Deepl;
$translated = Deepl::api()->translate('Hello world!', 'EN', 'DE');
Create/Update lang files for specific language. It allows to complete all missing translations for specific language.
php artisan deepl:sync de
Related Packages
rivalex/lingua
Self-hosted Laravel translation manager for the TALL stack: edit, sync, import/e...
480
2
arcanedev/laravel-lang
Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang'...
71,636
70
nativecodein/laravel-translation-scanner
Laravel translation scanner that auto-extracts __(), trans() and t() strings fro...
9
1