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 Important Points contracts in Laravel ?
What is helpers in laravel?
How can someone change the default database type in laravel?
Explain loggin in laravel.
What are named routes in laravel?
How do laravel facades work?
What is a Views ?
What are terminable middlewares?
Write code to upload a file in laravel 5?
State the difference between get and post method.
How to use select query in laravel?
How to pass multiple variables by controller to blade file?