Download the PHP package m165437/eloquent-numbered without Composer
On this page you can find all versions of the php package m165437/eloquent-numbered. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package eloquent-numbered
Numbered Eloquent Models
This package sequentially numbers your Eloquent model instances, constrained by a scope numbered
that you customize.
On every created
, deleted
, updated
and restored
event, the models in the scope get renumbered.
When the numbering happens, the model that raised the event is injected into the method and can be used to further limit the scope.
Retrieved models will include a number
attribute (customizable).
What is this good for? Rankings, positioning, row numbers, the fifth of something – when calculating the number ”on-the-fly“ is not an option.
Installation
Install the package via composer:
Usage
Add the trait M165437\EloquentNumbered\Numbered
to your model:
Add a number
field to your model migration:
If you would like to name this field / attribute differently, set the constant NUMBER
on the model accordingly, e.g.
Configuration
The default numbering scope (included with the trait) sorts the model instances by date in ascending order:
If you want to customize the scope, add it to your model.
When the numbering happens, the model that raised the event is injected into the method and can be used to further limit the scope, e.g. numbering the model instances for each user individually:
Tests
The package contains some integration/smoke tests, set up with Orchestra. The tests can be run via phpunit.
Contributing
Thank you for considering contributing to this package! Please see CONTRIBUTING for details.
License
This package is licensed under the MIT License (MIT). Please see the LICENSE file for more information.
All versions of eloquent-numbered with dependencies
illuminate/database Version ~5.5.0|~5.6.0|~5.7.0
illuminate/support Version ~5.5.0|~5.6.0|~5.7.0