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 trait in laravel?
What is binding in laravel?
How can I hide all stack whoops error information when the application is in production?
Is laravel nova free?
How to register a service provider in laravel?
Tell me in which language it was written?
What is best backend framework?
How to generate a request in laravel?
What is laravel model?
How to get requested path in laravel?
Explain homestead in laravel.
What is a service provider laravel?