PHP code example of folklore / eloquent-localizable

1. Go to this page and download the library: Download folklore/eloquent-localizable 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/ */

    

folklore / eloquent-localizable example snippets



use Folklore\EloquentLocalizable\LocalizableTrait;

class Page extends Eloquent {
    
    use LocalizableTrait;
    
}


use Folklore\EloquentLocalizable\LocaleModel;

class PageLocale extends LocaleModel {
    
    protected $table = 'pages_locales';
    
}


use Folklore\EloquentLocalizable\LocalizableTrait;

class Page extends Eloquent {
    
    use LocalizableTrait;
    
    protected function getLocaleModelClass()
    {
        return 'App\Models\CustomLocaleModel';
    }
    
}

Schema::create('pages_locales', function(Blueprint $table)
{
	$table->increments('id');
	$table->integer('page_id')->unsigned();
	$table->string('locale',2);
	$table->string('title');
	$table->string('description');
	$table->timestamps();
	
	$table->index('page_id');
	$table->index('locale');
});

$page = Page::with('locales')->first();

//Getting the title for a specific locale
echo $page->locales->fr->title;

//Looping through all locales
foreach($page->locales as $locale)
{
    echo $locale->locale.': '.$locale->title;
}

$page = Page::withLocale('fr')->first();

//Getting a the title
echo $page->locale->fr->title;


use Folklore\EloquentLocalizable\LocalizableTrait;

class Page extends Eloquent {
    
    use LocalizableTrait;
    
    protected $with = ['locales'];
    
}

$locales = array(
    'en' => array(
        'title' => 'A page',
        'description' => 'This is the description of this page'
    ),
    'fr' => array(
        'title' => 'Une page',
        'description' => 'Ceci est la description de cette page'
    )
);

//or

$locales = array(
    array(
        'locale' => 'en',
        'title' => 'A page',
        'description' => 'This is the description of this page'
    ),
    array(
        'locale' => 'fr',
        'title' => 'Une page',
        'description' => 'Ceci est la description de cette page'
    )
);

$page = new Page();
$page->save(); //We need an id for this page, so we save before.

$page->syncLocales($locales);