adiafora/laravel-postgres-naturalsort 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-07-29