Download the PHP package keevitaja/linguist without Composer
On this page you can find all versions of the php package keevitaja/linguist. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download keevitaja/linguist
More information about keevitaja/linguist
Files in keevitaja/linguist
Package linguist
Short Description Easy localization for the Laravel framework
License MIT
Informations about the package linguist
Linguist - Multilingual urls and redirects for Laravel
This package provides an easy multilingual urls and redirection support for the Laravel framework.
In short Laravel will generate localized urls for links and redirections.
Linguist works perfectly well with https://github.com/tightenco/ziggy named Laravel routes for javascript package!
Installation
Linguist is very easy to use. The locale slug is removed from the REQUEST_URI leaving the developer with the cleanest multilingual environment possible.
Install using Composer:
There are several options to make Linguist work.
Option 1: Modify the public/index.php
Add following line after the vendor autoloading to your projects public/index.php
file.
End result would be this:
Option 2: Use LocalizedKernel
Note: This option works only if you have not changed your applications root namespace. Default is
App
.
In your projects bootstrap/app.php
swap the App\Http\Kernel
with Keevitaja\Linguist\LocalazedKernel
:
Option 3: modify the App\Http\Kernel
Note: This also works with custom root namespace.
Publish config
Finally you need to publish the Linguist config to set your enabled locales and other relavant configurations.
Your personal configuration file will be config/linguist.php
.
Usage
You can add the LocalizeUrls middleware your web middleware group as the first item to get the linguist support:
Note: This middleware has to be the first item in group!
Another option is to use Linguist in your applications service provider:
UrlGenerator
will add the locale slug in front of the URI when needed. No extra actions needed.
Switcher is a little helper to get the current URLs for the locale switcher.
NB! Both config and route caching are working!
Assets
Use linguist helpers for a correct routing of assets
Regular Assets
Secure Assets
Queues
To make localization work in queues you need to run Linguist->localize($theLocaleYouWant)
inside the queued item.
Licence
MIT