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 |
what is implementation measures in CSRF Protection ?
What is the difference between facades vs helper functions?
Tell me how to set database connection in laravel?
What is escaping a string?
What is laravel spark?
Why should I use laravel?
How to create Creating a Controller ?
What are the server requirements for laravel 6.0?
Tell me what are pros and cons of using laravel framework?
Explain what is laravel
What is lumen?
What is a Artisan command ?