12.02.2018 Views

laravel_tutorial

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

16. Laravel – Localization<br />

Laravel<br />

Localization feature of Laravel supports different language to be used in application. You<br />

need to store all the strings of different language in a file and these files are stored at<br />

resources/views directory. You should create a separate directory for each supported<br />

language. All the language files should return an array of keyed strings as shown below.<br />

<br />

return [<br />

];<br />

'msg' => 'Laravel Internationalization example.'<br />

Step 2: Save French file at resources/lang/fr/lang.php.<br />

<br />

Step 3: Save German file at resources/lang/de/lang.php.<br />

<br />

85

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!