Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Laravel (5.7) Localization

Localization feature of Laravel supports different language to be used in an application. You need to store all the strings of different language in a file and these files are stored at resources/views directory.You should create a separate directory for each supported language. All the language files should return an array of keyed strings as shown below.

<?php
return [
   'welcome' => 'Welcome to the application'
];

Example

Step 1 - Create 3 files for languages − English, French, and German. Save English file at resources/lang/en/lang.php

<?php
   return [
      'msg' => 'Laravel Internationalization example.'
   ];
?>

Step 2 - Save French file at resources/lang/fr/lang.php.

<?php
   return [
      'msg' => 'Exemple Laravel internationalisation.'
   ];
?>

Step 3- Save German file at resources/lang/de/lang.php.

<?php
   return [
      'msg' => 'Laravel Internationalisierung Beispiel.' 
   ];
?>

Step 4 - Create a controller called LocalizationController by executing the following command.

php artisan make:controller LocalizationController

Step 5 - Copy the following code to file

app/Http/Controllers/LocalizationController.php

app/Http/Controllers/LocalizationController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;

class LocalizationController extends Controller {
   public function index(Request $request,$locale) {
      //set's application's locale
      app()->setLocale($locale);
      
      //Gets the translated message and displays it
      echo trans('lang.msg');
   }
}

Step 6 - Add a route for LocalizationController in app/Http/routes.php file. Notice that we are passing {locale} argument after localization/ which we will use to see output in different language.

app/Http/routes.php

Route::get('localization/{locale}','[email protected]');

Step 7 - Now, let us visit the different URLs to see all different languages. Execute the below URL to see the output in the English language.

https://localhost:8000/localization/en

Step 9 − The output will appear as shown in the following image.

Laravel Internationalization Example.

Step 10 - Execute the below URL to see the output in the French language.

https://localhost:8000/localization/fr

Step 11 - The output will appear as shown in the following image.

Example Laravel Internationalisation.

Step 12 - Execute the below URL to see the output in the German language

https://localhost:8000/localization/de

Step 13 - The output will appear as shown in the following image.

Laravel Internationalisierung Beispiel.

Previous: Laravel (5.7) Blade Template
Next: Laravel (5.7) Compiling Assets