Giter Site home page Giter Site logo

laravel-multilingual's Introduction

Laravel 5 Multilingual Models

Latest Version on Packagist Software License Total Downloads

This laravel package makes Eloquent Models attributes translatable without the need to separate database tables for translation values.

You simply call $country->name and you get a value based on your application's current locale.

You can also call $country->nameTranslations->en to get the value of a specific locale.

You can check all the translations of a given attributes as easy as $country->nameTranslations->toArray().

Installation

Begin by installing the package through Composer. Run the following command in your terminal:

composer require themsaid/laravel-multilingual

Once composer is done, add the package service provider in the providers array in config/app.php

Themsaid\Multilingual\MultilingualServiceProvider::class

Finally publish the config file:

php artisan vendor:publish

That's all, you are now good to go.

Usage

First you need to make sure that the translatable attributes has a mysql field type of text or json, if you are building the database from a migration file you may do this:

<?php

Schema::create('countries', function (Blueprint $table)
{
	$table->increments('id');
	$table->json('name');
});

Now that you have the database ready to save a JSON string, you need to prepare your models:

<?php

class Country extends Model
{
    use Themsaid\Multilingual\Translatable;

    protected $table = 'countries';
    public $translatable = ['name'];
    public $casts = ['name' => 'array'];
}
  • Add the Translatable trait to your model class
  • Add a public class property $translatable as an array that holds the names of the translatable fields in your model.
  • Remember to cast the translatable attribute as 'array' in the $casts property of the model.

Now our model has the name attribute translatable, so on creating a new Model you may specify the name field as follow:

<?php

Country::create([
	'name' => [
		'en' => "Spain",
		'sp' => 'España'
	]
]);

It'll be automatically converted to a JSON string and saved in the name field of the database, you can later retrieve the name like this:

$country->name

This will return the country name based on the current locale, if the current locale doesn't have a value then the fallback_locale defined in the config file will be used.

In case nothing can be found an empty string will be returned.

You may also want to return the value for a specific locale, you can do that using the following syntax:

$country->nameTranslations->en

This will return the English name of the country.

To return an array of all the available translations you may use:

$country->nameTranslations->toArray()

Validation

You can use the new array validation features released with laravel 5.2 to validate the presence of specific locales:

<?php

$validator = Validator::make(
    ['name' => ['en'=>'One', 'sp'=>'Uno']],
    ['name.en' => 'required']
);

However a validation rule is included in this package that deals with requiring all the validations to be provided:

<?php

$validator = Validator::make(
    ['name' => ['en'=>'One', 'sp'=>'Uno']],
    ['name' => 'translatable_required']
);

The translatable_required rule will make sure all the values of the available locales are set.

You may define the available locales as well as the fallback_locale from the package config file.

Now you only need to add the translated message of our new validation rule, add this to the validation.php translation file:

'translatable_required' => 'The :attribute translations must be provided.',

Queries

If you're using MySQL 5.7 or above, it's recommended that you use the json data type for housing translations in the Database, this will allow you to query these columns like this:

Company::whereRaw('name->"$.en" = \'Monsters Inc.\'')->orderByRaw('specs->"$.founded_at"')->get();

However in laravel 5.2.23 and above you can use the fluent syntax:

Company::where('name->en', 'Monsters Inc.')->orderBy('specs->founded_at')->get();

laravel-multilingual's People

Contributors

themsaid avatar mbouclas avatar freekmurze avatar

Watchers

James Cloos avatar Rodrigo Torres avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.