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 do you mean by terminable middleware?
Is laravel based on symfony?
Tell me why doesn't laravel use semantic versioning?
Which class is used to handle exceptions?
What is helper in laravel?
Explain few features of laravel?
What is helper function in laravel?
How to use multiple or condition in laravel query?
By default valet serve your app on which tld? How to configure it to use another domain?
Is laravel any good?
Can you exclude uris from csrf protection in laravel? Explain
How to Accessing Session Data in Laravel ?