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';
}
}
$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);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.