InterviewSolution
Saved Bookmarks
| 1. |
What is Localization in Laravel? |
|
Answer» LOCALIZATION is a way to serve content concerning the client's language preference. We can create different localization FILES and use a laravel HELPER method like this: `__(‘auth.error’)` to retrieve translation in the current locale. These localization files are located in the resources/lang/[language] FOLDER. |
|