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 do we need dependency injection?
Explain about laravel project?
What do you know about service providers in laravel?
Explain to listeners.
How to configure clear route cache in laravel?
What is monolog library?
Is laravel any good?
Explain laravel echo.
How to configure a mail-in laravel?
What are string and array helpers functions in laravel?
What is open source software?
How can you enable query log in laravel?