Skip to content

raditzfarhan/laravel-sortable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

License styleci

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.

About

Add sortable behaviour to Laravel or Lumen eloquent model

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages