PHP code example of xdarko / laravel-auto-translate

1. Go to this page and download the library: Download xdarko/laravel-auto-translate library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

xdarko / laravel-auto-translate example snippets


return [
    'test_mode' => false,//just for test.(won't query translate api,just fake translation)
    'log' => 'default',//log channel
    'base_locale' => 'en',
    'trans_locales' => ['fr', 'es', 'ja', 'it', 'pt'],
];


use Darko\AutoTranslate\Contracts\Models\AutoTranslatable;
use Darko\AutoTranslate\Models\Traits\HasAutoTranslate;
use Illuminate\Database\Eloquent\Model;

class AutoTranslateModel extends Model implements AutoTranslatable{
    use HasAutoTranslatable;

    public $translatable = ['title', 'content', 'blocks', 'desc'];//fields can be translated
    public $json_translatable = ['title', 'description'];//fields in json keys can be translated

}
bash
php artisan vendor:publish --tag="laravel-auto-translate-migrations"
php artisan vendor:publish --provider="Spatie\TranslationLoader\TranslationServiceProvider" --tag="migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="laravel-auto-translate-config"