Looking to hire Laravel developers? Try LaraJobs

laravel-sortable maintained by loafer

Description
Laravel package for sorting models
Last update
2023/07/06 14:02 (dev-master)
License
Links
Downloads
1

Comments
comments powered by Disqus

Laravel Sortable Package

Installation

composer require loafer/laravel-sortable

Usage

Just add the trait to your model.

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    use \Loafer\Sortable;
}

Configure sort column name

By default, the package will use sort_order column to store the sort value.

If you want to use another column, just add a sortColumn property to your model.

class Post extends Model
{
    use \Loafer\Sortable;

    public $sortColumn = 'order';
}