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.
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
illuminate/database Version ~5.5.0|~5.6.0
illuminate/support Version ~5.5.0|~5.6.0