PHP code example of mammut-alex / polyglot

1. Go to this page and download the library: Download mammut-alex/polyglot 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/ */

    

mammut-alex / polyglot example snippets


"mammut-alex/polyglot": "0.2.*"

    $table->string('name_en');
    $table->string('name_uk');
    $table->string('name_ru');

namespace App;

use Illuminate\Database\Eloquent\Model;
use MammutAlex\Polyglot\Polyglot;

class YouModel extends Model
{
	use Polyglot;
	
	public function name()
    	{
    		return $this->translation('name');
    	}
    ...