What is meant by Laravel - Localization ?
Answer / rachana devi
Localization feature of Laravel supports different language to be used in 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'
];
Is This Answer Correct ? | 0 Yes | 0 No |
Why are migrations necessary?
Explain how to redirect user with flashed session data in laravel?
How to use skip() and take() in laravel query?
When laravel was launched?
What is official website url of laravel?
How to generate a controller with resources in laravel?
How to get cookies in laravel?
Tell me what is system requirement for installation of laravel 5.2 (latest version)?
What is contextual binding?
What is boot method in laravel?
What are the Writing Gates and Policies ?
What is acl in laravel?