raditzfarhan / laravel-sortable
Just a simple sortable behaviour for your Laravel and Lumen eloquent model.
Package info
github.com/raditzfarhan/laravel-sortable
Type:laravel-package
pkg:composer/raditzfarhan/laravel-sortable
v1.0.0
2020-04-21 14:25 UTC
This package is auto-updated.
Last update: 2026-03-06 08:10:22 UTC
README
Laravel Sortable
Just a simple sortable behaviour for your Laravel and Lumen eloquent model.
Installation
Via Composer
$ composer require raditzfarhan/laravel-sortable:^1.0
Usage
Add the Sortable trait to your model:
namespace App\Models; use Illuminate\Database\Eloquent\Model; use RaditzFarhan\LaravelSortable\Sortable; class Post extends Model { use Sortable; // The ordering column in your table. Default to `sort_order`. // No need to set this if your ordering column name is `sort_order`. protected $sortable = 'ordering'; }
Credits
License
MIT. Please see the license file for more information.