| Package Data | |
|---|---|
| Maintainer Username: | josiasmontag |
| Maintainer Contact: | josias@montag.info (Josias Montag) |
| Package Create Date: | 2017-08-04 |
| Package Last Update: | 2025-03-25 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-04 03:02:07 |
| Package Statistics | |
|---|---|
| Total Downloads: | 35,806 |
| Monthly Downloads: | 63 |
| Daily Downloads: | 2 |
| Total Stars: | 23 |
| Total Watchers: | 2 |
| Total Forks: | 5 |
| Total Open Issues: | 3 |
The Laravel Localization package is built for Laravel 5.5+ and provides:
route() method to use localized routes whenever possible.artisan route:cache.To get started, use Composer to add the package to your project's dependencies:
composer require josiasmontag/laravel-localization
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just register the Service Provider and the the Localization Facade in your config/app.php configuration file:
'providers' => [
// Other service providers...
Lunaweb\Localization\LocalizationServiceProvider::class,
]
// ...
'aliases' => [
// Other Facades
'Localization' => \Lunaweb\Localization\Facades\Localization::class,
],
Add the HandleLocalization Middleware to the web group in App/Http/Kernel.php:
protected $middlewareGroups = [
'web' => [
// Other Middleware
\Lunaweb\Localization\Middleware\LocalizationHandler::class,
],
];
To publish the config file to config/localization.php:
php artisan vendor:publish --provider "Lunaweb\Localization\LocalizationServiceProvider"
Default configuration:
return [
// Add any language you want to support
'locales' => [
'en' => ['name' => 'English', 'script' => 'Latn', 'native' => 'English', 'regional' => 'en_GB'],
'de' => ['name' => 'German', 'script' => 'Latn', 'native' => 'Deutsch', 'regional' => 'de_DE'],
],
// The default locale is configured in config/app.php (locale)
// Default locale will not be shown in the url.
// If enabled and 'en' is the default language:
// / -> English page, /de -> German page
// If disabled:
// /en -> English Page, /de -> German page
'hide_default_locale_in_url' => true,
// Use query parameter if there are no localized routes available.
// Set it to null to disable usage of query parameter.
'locale_query_parameter' => 'hl',
// Enable redirect if there is a localized route available and the user locale was detected (via HTTP header or session)
'redirect_to_localized_route' => true,
// Try to detect user locale via Accept-Language header.
'detect_via_http_header' => true,
// Remember the user locale using session.
'detect_via_session' => true,
];
To add localized routes with language prefixes, edit your routes/web.php and use localizedRoutesGroup helper:
Localization::localizedRoutesGroup(function() {
Route::get('/', 'HomeController@uploadDocuments')->name('index');
Route::get('/register', 'RegisterController@showRegisterForm')->name('register');
});
Under the hood this will create the following routes for you:
Route | Route Name | Language
--- | --- | ---
/ | index | English (Default Language)
/de | de.index | German
/fr | fr.index | French
/register | register | English (Default Language)
/de/register | de.register | German
/fr/register | fr.register | French
To add domain-based localized routes, add the localized domains to your config/localization.php configuration:
'locales' => [
'en' => ['domain'=> 'domain.com', 'name' => 'English'],
'de' => ['domain'=> 'domain.de', 'name' => 'German'],
'fr' => ['domain'=> 'domain.fr', 'name' => 'French'],
],
The example from above will then create the following routes:
Route | Route Name | Language
--- | --- | ---
domain.com | index | English (Default Language)
domain.de | de.index | German
domain.fr | fr.index | French
domain.com/register | register | English (Default Language)
domain.de/register | de.register | German
domain.fr/register | fr.register | French
You can manually create language specific routes using the localization() macro.
Route::get('/contact', 'ContactController@showContactForm')
->localization('en')
->name('contact');
Route::get('/kontakt', 'ContactController@showContactForm')
->localization('de')
->name('de.contact');
route() will automatically use the localized version, if there is any available. Using the example from above, route('index') resolves to the index, de.index or fr.index route depending on the user's language.
Localization::isLocalizedRoute()
or...
Route::current()->getLocalization() === null
Route::current()->getLocalization()
Localization::getLocaleUrl($localeCode)
Localization::getLocaleRoute($localeCode)
@if(Localization::isLocalizedRoute())
@foreach(Localization::getLocales() as $localeCode => $properties)
<link rel="alternate" hreflang="{{ $localeCode }}" href="{{ Localization::getLocaleUrl($localeCode) }}">
@endforeach
@endif
<ul>
@foreach(Localization::getLocales() as $localeCode => $properties)
<li>
<a rel="alternate" hreflang="{{ $localeCode }}" href="{{ Localization::getLocaleUrl($localeCode, true) }}">
{{ $properties['native'] }} </a>
</li>
@endforeach
</ul>