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/ */
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
}