Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.eloquentfiltering.com/llms.txt

Use this file to discover all available pages before exploring further.

Sorting feature of this package is in its infancy and subject to changes.
$sql = Product::sort([
    [
        'target' => 'name',
        'value'  => 'desc',
    ],
])->toRawSql();
select * from "products" order by "name" desc