Package Data | |
---|---|
Maintainer Username: | torann |
Maintainer Contact: | torann@gmail.com (Daniel Stainback) |
Package Create Date: | 2016-05-03 |
Package Last Update: | 2024-03-22 |
Language: | PHP |
License: | BSD-2-Clause |
Last Refreshed: | 2024-11-10 15:06:01 |
Package Statistics | |
---|---|
Total Downloads: | 4,599 |
Monthly Downloads: | 137 |
Daily Downloads: | 0 |
Total Stars: | 2 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Simplified localization for Laravel based on the application's subdomain.
From the command line run:
$ composer require torann/localization
Once installed you need to register the service provider with the application. Open up config/app.php
and find the providers
key.
'providers' => [
\Torann\Localization\LocalizationServiceProvider::class,
]
Run this on the command line from the root of your project:
php artisan vendor:publish --provider="Torann\Localization\LocalizationServiceProvider"
A configuration file will be publish to config/localization.php
.
The following methods are available:
Laravel Localization comes with a few helper methods
localization()
Returns the Torann\Localization\LocaleManager
instance.
localize_url($locale = null, $url = null, $attributes = [])
Returns the given URL adapted to provided locale.
For this to work the subdomain needs to match an enabled supported locale key.
When the given subdomain is determined to not be valid the system can then set the locale depending on the current host. You'll need to set a map of your application's locales to hosts using the hosts configuration option.
Localization is open-sourced software licensed under the BSD 2-Clause License.