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 install mysql on valet?
How to Passing Data to Views ?
Explain how to retrive all requested data in laravel?
How to serve sites on valet?
How to create custom library in laravel?
Tell me how to enable the query logging?
Tell me how do I see all of the routes that are defined?
What is schema in laravel?
How to get data between two dates with query in laravel?
Explain fluent query builder in laravel.
Tell me how to set database connection in laravel?
How to do environment configuration in laravel.