adiafora/laravel-postgres-naturalsort
最新稳定版本:1.2
Composer 安装命令:
composer require adiafora/laravel-postgres-naturalsort
包简介
This is a just simple example of how you can add natural sorting to your Eloquent models if you use Postgres.
README 文档
README
This simple package will help you add natural sorting to your Eloquent models if you use PostgreSQL.
Installation
Run:
composer require "adiafora/laravel-postgres-naturalsort"
Run migration on the package:
php artisan migrate
Usage
You can add a NaturalSortTrait to any Eloquent model
Product extends Model
{
use \Adiafora\NaturalSort\NaturalSortTrait;
}
And in your client code you can write:
Product::orderByNatural('text')->get();
or reverse sorting
Product::orderByNaturalDesc('text')->get();
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-29