How to create Tamil Language Based Web Application in Laravel 5.4
I planed to create Departmental Store Laravel Web Application in Tamil Language Not Using English. How to do it? You can create web apps using laravel's Localization. For that, you need to create language strings. Language strings are stored in files within the resources/lang directory. You need to create locale: Route::get('welcome/{locale}', function ($locale) { App::setLocale($locale); // }); Then create file within that directory and save it messages.php name like this: <?php return [ 'welcome' => 'Welcome to our application' ]; ?> Then you need to use this as in any blade file like: @lang