Laravel 6 Localization tutorial example – PHP

Today, We want to share with you Laravel 6 Localization tutorial example.In this post we will show you Laravel 6.0 Localization(trans helper) tutorial example, hear for laravel trans function we will give you demo and example for implement.In this post, we will learn about laravel 6 trans tutorial with an example.

Laravel 6 Localization tutorial example

There are the Following The simple About laravel 6 localization trans helper Full Information With Example and source code.

As I will cover this Post with live Working example to develop How to do multi tenant application with Laravel 6, so the Adding multi-language functionality in a website developed in laravel 6 is used for this example is following below.

Set en language related Message

resources/lang/en/activities.php

return [
    'web_name' => 'www infinityknow come - English',
    'slogan' => 'free download source code - English',
];

Set es language related Message

resources/lang/es/activities.php

return [
    'web_name' => 'www ministackoverflow com - Spanish',
    'slogan' => 'Jio tamilrokers with Bookmyshow - Spanish',
];

Blade Welcome Laravel page

welcome.blade.php

@extends('layouts.app')

@section('content')

{{ trans('activities.slogan') }}

{{ trans('activities.slogan') }}

@endsection

define default language

config/app.php

[
	.....
	'locale' => 'en',
	......
	'fallback_locale' => 'en',
	.....
]

Extra Advance Way to multi-language in Laravel 6

using Laravel 6 middleware

$ php artisan make:middleware Localization

appName/app/Http/Middleware/Localization.php

public function handle($request, Closure $next)
{
   if(\Session::has('locale'))
   {
       \App::setlocale(\Session::get('locale'));
   }
   return $next($request);
}

resources/lang/en/activities.php

return [
    'title'       => 'Welcome to our application'
];

resources/lang/fr/activities.php

return [
    'title'       => 'Bienvenue sur notre application'
];

/app/Http/Kernel.php

\App\Http\Middleware\Localization::class,

routes/web.php

Route::get('locale/{locale}', function ($locale){
    Session::put('locale', $locale);
    return redirect()->back();
});


{{ __('activities.title') }}

Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about laravel PHP simple trans function.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment