Download the PHP package fevrok/laravel-translatable without Composer

On this page you can find all versions of the php package fevrok/laravel-translatable. 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 laravel-translatable

Laravel Translatable

It's a Laravel model columns translation manager

How it works?

Installation

You can install the package via composer:

If you have Laravel 5.5 and up The package will automatically register itself.

else you have to add the service provider to config/app.php

publish config file and migration.

next migrate translations table

Setup

After finishing the installation you can open config/translatable.php:

And update your config accordingly.

Making a model translatable

The required steps to make a model translatable are:

Here's an example of a prepared model:

Custom translations model

To get started, publish the assets again this will create new migration update table name to your desire.

CustomTranslation.php

Add $translations_model property and give it to the model you wanna customize,

Usage

Eager-load translations

Get default language value

Get translated value

If you do not define locale, the current application locale will be used. You can pass in your own locale as a string. If you do not define fallbackLocale, the current application fallback locale will be used. You can pass your own locale as a string. If you want to turn the fallback locale off, pass false. If no values are found for the model for a specific attribute, either for the locale or the fallback, it will set that attribute to null.

Translate the whole model

If you do not define locale, the current application locale will be used. You can pass in your own locale as a string. If you do not define fallbackLocale, the current application fallback locale will be used. You can pass in your own locale as a string. If you want to turn the fallback locale off, pass false. If no values are found for the model for a specific attribute, either for the locale or the fallback, it will set that attribute to null.

Check if model is translatable

Set attribute translations

This will update or create the translation for title of the post with the locale da. Please note that if a modified attribute is not translatable, then it will make the changes directly to the model itself. Meaning that it will overwrite the attribute in the language set as default.

Query translatable Models

To search for a translated value, you can use the whereTranslation method. For example, to search for the slug of a post, you'd use

whereTranslation accepts the following parameter:

Maintainers


Abdellah Chadidi

All versions of laravel-translatable with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1.3|^8.0
illuminate/support Version ^5.6|^6.0|^7.0|^8.0
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 fevrok/laravel-translatable contains the following files

Loading the files please wait ....