الصفحات · Laravilt
Sorting
Column sorting for queries
Configure sortable columns.
Basic Usage
php
With Custom Column
php
Apply Sorting
php
Methods
| Method | Description |
|---|---|
make(name, ?column) | Create sort |
label(string) | Display label |
column(string) | Database column |
defaultDirection(string) | asc or desc |
visible(bool) | Visibility |
getName() | Get name |
getColumn() | Get column |
getLabel() | Get label |
Auto Label
Labels are auto-generated from names:
| Name | Generated Label |
|---|---|
created_at | Created At |
product_name | Product Name |
user_email | User Email |
Complete Example
php