PHP code example of hostitonline / laravel-translator
1. Go to this page and download the library: Download hostitonline/laravel-translator 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/ */
hostitonline / laravel-translator example snippets
namespace App\Models;
use HostitOnline\LaravelTranslator\Traits\Translatable;
class Product extends Model
{
use Translatable;
/** @var array|string[] */
public array $translatable = [
'name'
];
protected $fillable = [
'name'
];
}