Download the PHP package madnh/laravel-model-labels without Composer

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

LaravelModelLabels

Support get label of model's fields, from model::$labels property or Laravel's localization features

Install

  1. Add this package to composer.json

  2. In model classes, use MaDnh\LaravelModelLabels\LabelsTrait

Properties

  1. static::$label_path

Prefix of locale path, default is model_<model_name_in_snake_case>. Example:

  1. static::$labels

Model labels. Array of properties name (as keys) and labels (as value)

Example:

  1. static::$labels_trans_map

Label trans map, use when can't find label of a property in label cached, locale, static $labels.

If the property is not defined in this array, will use the auto convert function - which try to get the label in title case of lower cased property name: id => Id .

Special useful for acronym words like ID, VIP, CMND,..

Example:

  1. static::$label_cached

Cached labels. Priority is highest.

Usage

Label priority

Model cache > Laravel i18n > Model static::$labels

Define labels

Label can store in a static property of model, or in a locale file. Labels in locale files will override model's static property

  1. Define labels in model class

Define a static property named $labels, it is an array of labels, with key is fields name, value is label. Label maybe a string or callable value. If it's a callable value, then result of it will used as label, that callable has 1 argument, it is the field need to get label.

  1. Define labels in locale files

Add file to site's locale folder, named model_<model_name_in_snake_case>.php. This locale file return an array of string. Labels of model's fields store at a key named is field, it is an array of field name and label.

Get labels

Use following methods to get labels

Method Example Description
modelLabel() Country::modelLabel() Get label of model class
labels() Country::labels() Get all of lables of fields
labels() Country::labels('name', 'flag', 'code', ['title']) Get label of fields
label() Country::label('name') Get label of a field

Examples


All versions of laravel-model-labels with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
laravel/framework Version ^5.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 madnh/laravel-model-labels contains the following files

Loading the files please wait ....