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 |
How to Declaration of namespace ?
List out some artisan commands?
What is a primary implication of a cross site request forgery attack?
How to use delete statement in laravel?
What are the plateforms laravel homestead supports?
What is double submit cookie?
What are the main features of laravel?
What is validation in laravel and how it is used?
What is reverse routing in laravel?
What is homebrew?
What is the best way to learn laravel?
Explain dependency injection and their types.