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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laratrans

Laratrans for Laravel - Laravel >= 7.0

GitHub issues GitHub forks GitHub stars GitHub license

Laravel translation package for building database localized mutli-lang websites..

Contents

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.


All versions of laratrans with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package corecave/laratrans contains the following files

Loading the files please wait ....