Download the PHP package mtsanford/laravel-arrangeable without Composer

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

Arrangeable behavior for Laravel models

This package provides a trait that adds an arrangeable behavior to an Laravel model. Instances of arrangeable models have an order column with values 0,1,2... Arrangeable models by default do not use a foreign key for grouping, but a foreign key can be specified in configuration, where each group will have it's own ordering. Compatible with Lavavel ^5.5.

Instalation

You can install using composer:

Usage

To add arrangeable behavior to your model, use the trait , optionally specifying a foreign key in configuration to group models.

Methods

ArrangeableTrait::arrangeableMove(array, int | null)

This will move a list of models specified by id to a target group defined by a foreign key, appending them to the end of the target group in the order specified. Models from the target group can be in the source list. Groups with removed items will have their orders adjusted appropriately.

If all the models are in the same foreign key group and will remain there, there is no need to specify it. Reordering an entire group is just a special case of this.

Also if the model has no foreign key, there is no need to specify it.

ArrangeableTrait::arrangeableFixOrder(int | null)

A convenient utility should your operations cause the ordering to become irregular. Again, the foreign key parameter is only needed if there is a foreign key specified in $arrangeableConfig (see below).

Create and Delete

By default, 'creating' and 'deleted' model events are listened to, and the orders within the group are kept up to date.

Arrange query scope

Configuration

These are the default configuration settings:

To override any of them, define a static property $arrangeableConfig in your model.

Tests

The package contains some phpunit tests, using Orchestra. After installation run:

Credits

Inspired by spatie/eloquent-sortable.

About

Mark Sanford is a developer in San Francisco.

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-arrangeable with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
illuminate/database Version ~5.5.0|~5.6.0
illuminate/support Version ~5.5.0|~5.6.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 mtsanford/laravel-arrangeable contains the following files

Loading the files please wait ....