laravel-google-translate maintained by datlechin
Description
Free Google Translate API for Laravel application.
Author
Last update
2026/01/18 12:34
(dev-main)
License
Downloads
42 370
Laravel Google Translate
This package allows you to free translate your Laravel app easily using the Google Translate API.
Installation
You can install the package via composer:
composer require datlechin/laravel-google-translate
Usage
use Datlechin\GoogleTranslate\Facades\GoogleTranslate;
// Using facade
$result = GoogleTranslate::source('en')
->target('vi')
->translate('Hello world!');
$result->translatedText(); // Chào thế giới!
$result->getAlternativeTranslations();
//[
// [
// 0 => 'Chào thế giới!',
// 1 => 'Xin chào thế giới!',
// 2 => 'Chào cả thế giới!',
// ],
//]
$result->getSourceText(); // Hello world!
$result->getSourceLanguage(); // en
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email datlechin@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.