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 are the Forms in Laravel ?
How to get current action name in laravel?
What is the make method?
Can we assign multiple middlewares to a route.
What is closure in laravel?
Do you know what is laravel elixir?
What is technology service provider?
What is laravel echo?
How to configure route cache and clear route cache in laravel?
Explain how to configure cron jobs in homestead?
What is a Retrieving Input ?
Tell me when laravel was launched?