> ## 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 Models

<Warning>
  Sorting feature of this package is in its infancy and subject to changes.
</Warning>

```php theme={null}
$sql = Product::sort([
    [
        'target' => 'name',
        'value'  => 'desc',
    ],
])->toRawSql();
```

```sql theme={null}
select * from "products" order by "name" desc
```
