PHPackages                             ritas/lexorank - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ritas/lexorank

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ritas/lexorank
==============

0.6.4(7mo ago)0252↓100%MITPHPPHP &gt;=7.2.5

Since Sep 4Pushed 7mo agoCompare

[ Source](https://github.com/Shine-Ritas/LexoRank)[ Packagist](https://packagist.org/packages/ritas/lexorank)[ RSS](/packages/ritas-lexorank/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (8)Versions (5)Used By (0)

LexoRankTrait - A Trait for Managing Sortable Positions in Laravel Models
=========================================================================

[](#lexoranktrait---a-trait-for-managing-sortable-positions-in-laravel-models)

The `LexoRankTrait` is a trait that simplifies the process of managing sortable positions within your Laravel models. It provides functionality for dynamically calculating and managing the "position" or "rank" of items in a list. This is useful for scenarios where you want to reorder items without relying on fixed indices.

Features
--------

[](#features)

- **Automatic Positioning on Create**: When creating a new record, the trait will automatically assign it a position based on the existing records.
- **Customizable Query Logic**: You can customize the way the sorting is applied, allowing for more flexible scenarios such as filtering by additional fields.
- **Reordering Models**: You can move models before or after other models, and the positions will be automatically adjusted.
- **Flexible Sorting**: Easily sort models based on the sortable field (`position` by default, but this can be customized).
- **Custom Sortable Field**: The trait uses `position` by default but allows customization to any other field that holds the sortable value.

Installation
------------

[](#installation)

1. **Add the trait to your model**:

    In order to use `LexoRankTrait`, simply include it in your model:

    ```
    use Ritas\Lexorank\LexoRankTrait;

    class CustomItem extends Model
    {
        use LexoRankTrait;

        // Optionally override the default sortable field
        protected static $sortableField = custom_position;
    }
    ```
2. **Override the applySortableGroup method (optional)**:

    If you want to apply custom query conditions (e.g., sorting within groups like `mogou_id` or `sub_mogou_id`), you can override the `applySortableGroup` method in your model:

    ```
    //example custom applySortableGroup
    protected static function applySortableGroup(QueryBuilder $query, Model $model)
    {
        if (property_exists($model, 'category_id') && property_exists($model, 'active')) {
            $query->where('category_id', $x)
                  ->where('active',1);
        }

        return $query;
    }
    ```
3. **Run Migrations**:

    Ensure that the table youre using with the trait has a sortable field (like `position`) to store the rank. If your model uses `position`, make sure the database schema is ready to store it:

    ```
    Schema::table(custom_items, function (Blueprint $table) {
        $table->string('position')->nullable();

        $table->index('position'); // recommend
    });
    ```

Methods
-------

[](#methods)

1. `bootLexoRankTrait()`

    - The traits `bootLexoRankTrait()` method automatically assigns the next available position when creating a new model. You can customize how the max position is calculated by overriding the `applySortableGroup` method.
2. `scopeSorted($query)`

    - Use this scope to retrieve models ordered by their position field.

    Example:

    ```
    $items = CustomItem::sorted()->get();
    ```
3. `moveAfter($entity)`

    - Moves the current model after another model (recalculating positions accordingly).

    Example:

    ```
    $firstItem->moveAfter($secondItem);
    ```
4. `moveBefore($entity)`

    - Moves the current model before another model (recalculating positions accordingly).

    Example:

    ```
    $firstItem->moveBefore($secondItem);
    ```
5. `resetPositions`

    - Resets the positions of all models in the table.

    Example:

    ```
    CustomItem::resetPositions();
    ```
6. `getNewPosition($prev, $next, $isMoving = false)`

    - Generates a new position based on the positions of two other models.
7. `previous($limit = 0)`

    - Gets the previous models relative to the current model.
8. `next($limit = 0)`

    - Gets the next models relative to the current model.
9. `siblings($isNext, $limit = 0)`

    - Retrieves models that are either before or after the current model based on the position field.
10. `getPrevious($limit = 0)`

    - Gets a collection of the previous models.
11. `getNext($limit = 0)`

    - Gets a collection of the next models.

Example Usage
-------------

[](#example-usage)

```
use App\Models\CustomItem;

// Creating a new item
$item = CustomItem::create([
    name => New Item,
    // Any other attributes
]);

// Reordering an item
$item1 = CustomItem::find(1);
$item2 = CustomItem::find(2);

// Move item1 before item2
$item1->moveBefore($item2);

// Move item1 after item2
$item1->moveAfter($item2);

// Get next items (with a limit)
$nextItems = $item1->getNext(5);

// Get previous items (with a limit)
$previousItems = $item1->getPrevious(5);
```

Customizing the Sortable Field
------------------------------

[](#customizing-the-sortable-field)

If you want to use a different field as the sortable field, you can override the `$sortableField` property in your model:

```
class CustomItem extends Model
{
    use LexoRankTrait;

    // Override the default sortable field to rank
    protected static $sortableField = rank;
}
```

Notes
-----

[](#notes)

- **Performance Considerations**: When dealing with large datasets, be mindful of how the position is being calculated and the number of queries executed. You may want to consider adding appropriate indexes to the sortable field.
- **Migration Strategy**: If youre introducing this functionality into an existing project, consider how the existing data should be migrated and ranked. A script to calculate and update the position values might be necessary.

License
-------

[](#license)

MIT License

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance65

Regular maintenance activity

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~12 days

Total

4

Last Release

210d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ea57048673b65816f689f94853293d8d0d7c7b1a3357c27567aaccd34605f522?d=identicon)[Shine-Ritas](/maintainers/Shine-Ritas)

---

Top Contributors

[![Shine-Ritas](https://avatars.githubusercontent.com/u/209247157?v=4)](https://github.com/Shine-Ritas "Shine-Ritas (4 commits)")

---

Tags

lexorankritas

###  Code Quality

TestsPest

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/ritas-lexorank/health.svg)

```
[![Health](https://phpackages.com/badges/ritas-lexorank/health.svg)](https://phpackages.com/packages/ritas-lexorank)
```

###  Alternatives

[tonysm/rich-text-laravel

Integrates Trix content with Laravel

46577.8k1](/packages/tonysm-rich-text-laravel)[worksome/exchange

Check Exchange Rates for any currency in Laravel.

123544.7k](/packages/worksome-exchange)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[tonysm/globalid-laravel

Identify app models with a URI. Inspired by the globalid gem.

45101.6k2](/packages/tonysm-globalid-laravel)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[hotwired-laravel/stimulus-laravel

Use Stimulus in your Laravel app

3015.3k1](/packages/hotwired-laravel-stimulus-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
