This package provides the ability to use all language localization messages from your Laravel-based app in browser's JavaScript. It also comes with a simple JavaScript Translator library that has some methods to interact with the messages.
- PHP:
^8.0
- Laravel:
^8.0|^9.0|^10.0|^11.0
You can install the package via Composer:
composer require apih/laravel-jslang
The Apih\JsLang\JsLangServiceProvider
class is auto-discovered and registered by default.
If you want to register it yourself, add the service provider in config/app.php
:
'providers' => [
/*
* Package Service Providers...
*/
Apih\JsLang\JsLangServiceProvider::class,
],
You can publish the config file with:
php artisan vendor:publish --provider="Apih\JsLang\JsLangServiceProvider" --tag="jslang-config"
You can publish the JavaScript Translator library with:
php artisan vendor:publish --provider="Apih\JsLang\JsLangServiceProvider" --tag="jslang-script"
To test whether the installation is successful, you can run the following code:
use Apih\JsLang\JsLang;
$jsLang = app(JsLang::class);
echo $jsLang->getUrl('en', 'all');
echo $jsLang->getContents('en', 'all');
It should output the URL and the JavaScript code for language localization messages.
There are three message types:
short
- localization messages defined inPHP
fileslong
- localization messages defined inJSON
filesall
- combination of bothshort
andlong
types
By opening the URL generated by getUrl()
, you will get the respective contents based on provided locale and type. By default, the contents are generated on runtime, unless you generate all the files beforehand, using the provided Artisan command.
You can generate all JavaScript files with:
php artisan jslang:generate
By default, crc32
hashing algorithm is used to generate the contents' hash included in the filename. You can change the algorithm by using --hash-algo
option. The following example uses sha256
hashing algorithm and only takes first 12 characters from the generated hash:
php artisan jslang:generate --hash-algo=sha256,12
Generated files are placed in public/lang
directory, based on the default config. It is recommended to put the directory in .gitignore
file.
You can clear all generated files with:
php artisan jslang:clear
In order to use in front-end, several steps have to be taken. First, edit resources/js/app.js
to add the JavaScript translator:
window.Lang = require('./lang');
Then, use npm run dev
or npm run prod
to compile resources/js/app.js
.
After that, you need to configure it in your page:
<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ app(\Apih\JsLang\JsLang::class)->getUrl('en', 'all') }}"></script>
<script>
Lang.setLocale('en');
Lang.setMessages(window.langData);
</script>
To test it, you can open the page in the browser and run the following code in the console to test it:
Lang.get('validation.required', { attribute: 'email' });
// Output: The email field is required.
Lang.choice('[0] No user|[1] 1 user|[2,*] :count users', 0);
// Output: No user
Lang.choice('[0] No user|[1] 1 user|[2,*] :count users', 1);
// Output: 1 user
Lang.choice('[0] No user|[1] 1 user|[2,*] :count users', 2);
// Output: 2 users
If you discover any security related issues, please email hafizuddin_83@yahoo.com instead of using the issue tracker. Please prefix the subject with Laravel JS Lang:
.
The MIT License (MIT). Please see License File for more information.