News

Localizater Localization Package for Laravel

Published
Localizater Localization Package for Laravel image

Localizater is a Laravel package for wrapping routes in multiple locale prefixes.

Here’s an example from the readme of the basic usage when defining localized routes:

// routes/web.php
use Getsupercode\Localizater\Facades\Localizater;
use Illuminate\Support\Facades\Route;
 
Localizater::group(function () {
Route::view('/', 'welcome')->name('welcome');
Route::get('/user', 'UserController@index');
});
 
// Put other (Non-read) route actions outside the `Localizater::group` as you don't need to have multiple locales for those actions.
 
Route::post('/user', 'UserController@store');

This package will detect and change the locale of the application based on the request automatically via the provided middleware:

protected $middlewareGroups = [
'web' => [
\Getsupercode\Localizater\LocalizaterMiddleware::class,
// ...
]
];

Finally, Localizater provides some route helpers to generate locale-based URLs:

// Route URL: example.com/fr/home
// Output: example.com/home
locale_route('home', 'en');

This package provides other configuration options such as defining a default locale, showing the locale in the URL for the default, and configuring the available locales.

You can learn more about this package, get full installation instructions, and view the source code on GitHub at Getsupercode/Localizater. The Laravel Localization documentation is another excellent resource for learning the localization support Laravel provides.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article