mihai-valentin / laravel-order-by-field
A simple Laravel `Query\Builder` extension that adds MySQL-like "order by field" feature
Installs: 8 178
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.0
- illuminate/database: >=9.0
- illuminate/support: >=9.0
Requires (Dev)
- ext-mysqli: *
- ext-pgsql: *
- ext-sqlite3: *
- friendsofphp/php-cs-fixer: ^3.13
- orchestra/testbench: ^7.19
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-11-13 18:14:03 UTC
README
This package provides a few Laravel Query\Buider
marco in order to implement MySQL-like order by filed(...)
feature.
Installation
Get the package
composer require mihai-valentin/laravel-order-by-field
Usage
use \Illuminate\Support\Facades\DB; // Order records by a column asc DB::table('table_name')->orderByField('column', ['first', 'second', 'third']); // Order records by a column desc DB::table('table_name')->orderByField('column', ['first', 'second', 'third'], 'desc'); DB::table('table_name')->orderByFieldDesc('column', ['first', 'second', 'third']);
How it works
For the MySQL macro will generate a native order by field(...)
expression. For all other drivers order clause will be
implemented using case
predicate.
Using MySQL
use \Illuminate\Support\Facades\DB; // Before DB::table('table_name')->orderByRaw("field(`column`, 'first', 'second', 'third')"); // With macro DB::table('table_name')->orderByField('column', ['first', 'second', 'third']);
Using Postgresql, Sqlite
use \Illuminate\Support\Facades\DB; // Before DB::table('table_name')->orderByRaw(" case when \"column\"='first' then 1 when \"column\"='second' then 2 when \"column\"='third' then 3 else 0 end "); // With macro DB::table('table_name')->orderByField('column', ['first', 'second', 'third']);
PhpStorm autocomplete
You can create an _ide_helper
file to tell your IDE about new methods. The helper file can look like this
<?php namespace Illuminate\Contracts\Database\Query { use MihaiValentin\LaravelOrderByFiled\OrderByFieldServiceProvider; /** * @method Builder orderByField(string $column, array $order, string $direction = 'asc') * @method Builder orderByFieldDesc(string $column, array $order) * * @see OrderByFieldServiceProvider */ interface Builder {} } namespace Illuminate\Database\Eloquent { /** * @method Builder orderByField(string $column, array $order, string $direction = 'asc') * @method Builder orderByFieldDesc(string $column, array $order) * * @see OrderByFieldServiceProvider */ class Builder implements BuilderContract {} }
You can find it here
Tests
You can run tests using the make
# Run tests, code static analysis and cs fixer make test
# Run phpunit tests
make phpunit
Build
You can build the package using the make
# Install composer dependencies and run tests
make
Code of Conduct
In order to ensure that the community is welcoming to all, please review and abide by the Code of Conduct.
Contributing
Please see CONTRIBUTING.md for details.
License
The MIT License (MIT). Please see License File for more information.