Nayjest / Grids

Grids framework for Laravel
MIT License
203 stars 77 forks source link

How to Sortable grid to Desc #181

Open prabukarana opened 7 years ago

prabukarana commented 7 years ago

How to change default grid show from asc to desc.

wdog commented 7 years ago

use Grid::SORT_DESC

ex.

(new FieldConfig('xyz'))
    ->setLabel('xyz')
    ->setSortable(true)
    ->setSorting(Grid::SORT_DESC)    
prabukarana commented 7 years ago

Nice.. thq..