PHP code example of indigoram89 / laravel-translatable

1. Go to this page and download the library: Download indigoram89/laravel-translatable 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/ */

    

indigoram89 / laravel-translatable example snippets


$newsItem = new NewsItem; // This is an Eloquent model
$newsItem
   ->setTranslation('name', 'en', 'Name in English')
   ->setTranslation('name', 'nl', 'Naam in het Nederlands')
   ->save();
   
$newsItem->name; // Returns 'Name in English' given that the current app locale is 'en'
$newsItem->getTranslation('name', 'nl'); // returns 'Naam in het Nederlands'

app()->setLocale('nl');

$newsItem->name; // Returns 'Naam in het Nederlands'

return [
  'fallback_locale' => 'en',
];

$newsItem->name;

public function getTranslation(string $attributeName, string $locale, bool $useFallbackLocale = true) : string

$newsItem->getTranslations();

$yourModel->translations

$newsItem->name = 'New translation';

$newItem->name = ['en' => 'myName', 'nl' => 'Naam in het Nederlands'];

$newsItem->setTranslation('name', 'en', 'Updated name in English');

$newsItem->save();

public function replaceTranslations(string $key, array $translations)

$translations = ['en' => 'hello', 'es' => 'hola'];

$newsItem->setTranslations('hello', $translations);
$newsItem->getTranslations(); // ['en' => 'hello', 'es' => 'hola']

$newTranslations = ['en' => 'hello'];

$newsItem->replaceTranslations('hello', $newTranslations);
$newsItem->getTranslations(); // ['en' => 'hello']

/** @var \Illuminate\Database\Eloquent\Model */
public $model;

/** @var string  */
public $attributeName;

/** @var string  */
public $locale;

public $oldValue;
public $newValue;

NewsItem::create([
   'name' => [
      'en' => 'Name in English',
      'nl' => 'Naam in het Nederlands'
   ],
]);

NewsItem::where('name->en', 'Name in English')->get();

NewsItem::whereRaw("JSON_EXTRACT(name, '$.en') = 'Name in English'")->get();

php artisan vendor:publish --provider="Spatie\Translatable\TranslatableServiceProvider"
 php
public function forgetAllTranslations(string $locale)
 php
public function getTranslations(string $attributeName): array
 php
public function setTranslations(string $attributeName, array $translations)
 php
$translations = [
   'en' => 'Name in English',
   'nl' => 'Naam in het Nederlands'
];

$newsItem->setTranslations('name', $translations);
 php
$newsItem = NewsItem::firstOrFail()->setLocale('fr');

// Any properties on this model will automaticly be translated in French
$newsItem->name; // Will return `fr` translation
$newsItem->name = 'Actualité'; // Will set the `fr` translation
 php
// Will automatically set the `fr` translation
$newsItem = NewsItem::usingLocale('fr')->create([
    'name' => 'Actualité',
]);