Download the PHP package corecave/laratrans without Composer
On this page you can find all versions of the php package corecave/laratrans. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download corecave/laratrans
More information about corecave/laratrans
Files in corecave/laratrans
Package laratrans
Short Description Laravel helper package for building database mutli-lang websites.
License MIT
Informations about the package laratrans
Laratrans for Laravel - Laravel >= 7.0
Laravel translation package for building database localized mutli-lang websites..
Contents
- Laratrans for Laravel - Laravel >= 7.0
- Contents
- Installation
- Usage
- Change Application Locale.
- Consider a donation
- Credits
- License
Installation
You can install the package via composer:
Laravel auto-discovery with discover the service provicer
OR
Add the service provider manually:
Append CoreCave\Laratrans\Middleware\Locale
to the $routeMiddleware
array in app\Http\Kernel.php
file.
Put your database credentials to your .env
file
Then you should migrate the database
Usage
After you have installed laratrans package you need to add the
MasterTranslatable
and DetailsTranslatable
traits to your models that you want to make localizable. Additionaly,
NOTE:- Please note that slave model must be proceeded with underscore _
and its related table must be proceeded by double underscore __
(e.g. Person
=> _Person
, people
=> __people
)
Then, define the fields required by the package for localization to work properly on your migration:
If you need to specify a different foreign key name for your model, just override getForeignKeyName
on MasterTranslatable
trait.
Then, setup some models, migrations, factories and seeders for locales
, people
and __people
tables or just you can publish them for faster development:
php artisan vendor:publish --tag="laratrans"
If you want to see localization in action, just setup some dummy routes in your routes/web.php
)file.
Change Application Locale.
To change your application localication code.
Issue a GET
request to http://yourdomain.com/localize/web/en
.
This route is constructed as http://yourdomain.com/localize/{guard}/{locale-code}
Consider a donation
Become a patreon and encourage us to do more. [Become a patreon]
Credits
License
The MIT License (MIT). Please see License File for more information.